0

I am using a Custom TableViewCell. I want to disable Accessibility for the cell and unchecked the accessibility in the Custom TableView Cell XIB. And even in the Implementation file, i am trying to set the setIsAccessibilityElement to NO.

[self setIsAccessibilityElement:NO];

and i have set the AccessibilityElement as No for the subviews inside the TableViewCell. But still i find that the accessibility is enabled when i run the application.

Can anyone please suggest any other alternative way to disable the Accessibility to a Custom TableViewCell?

Pradeep Reddy Kypa
  • 3,992
  • 7
  • 57
  • 75

1 Answers1

1

try self.accessibilityElementsHidden = YES;

Rakesh iOS Dev
  • 935
  • 12
  • 19