Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

erdinc27

macrumors regular
Original poster
Jul 20, 2011
168
1
I have a table view in view controller. The first row cannot be selected when the voice over is on. But other rows can be tapped. What can be reason for that? Here how custom cell looks like
Code:
override public func awakeFromNib() {
        super.awakeFromNib()
        self.selectionStyle = UITableViewCellSelectionStyle.none;
        labelName.isAccessibilityElement = true
        labelDirection.isAccessibilityElement = true
        labelStopCode.isAccessibilityElement = true
        labelLines.isAccessibilityElement = true
        labelDistanceOrTime.isAccessibilityElement = true
        self.contentView.isAccessibilityElement = true
    }
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.