MKMapAnnotaion view callout contains tableview and uitableviewcells are not accessible

324 Views Asked by At

I want to set Accessibility label for uitableviewcell. When i add tableview as MKMapViewAnnotation content I am not able to select tableviewcell through accessibility. When I debug tableview inside MKMapAnnotation isAccessible is always NO and tableviewcell inside MKMapAnnotation isAccessible is Yes. Please help me to set isAccessible of tableview to Yes. I tried in milliion ways to set but tableview is not accessible.

Fot Tableview:

 _tableview.isAccessibilityElement = YES;

For UITableviewcell :

cell.isAccessibilityElement = YES;
NSString *accessibilitytext = [NSString stringWithFormat:@"%@, %@",cell.textLabel.text,cell.detailTextLabel.text];
cell.accessibilityLabel = accessibilitytext;

For viewForAnnotaion:

MKAnnotationView* view =    [((NSObject<AnnotationProtocol>*)annotation) annotationViewInMap:self.mapView]
view.isAccessibilityElement = YES;
2

There are 2 best solutions below

4
On

It is possible, please go through this once.

https://github.com/grgcombs/MultiRowCalloutAnnotationView

Hope this helps.

1
On

You can try to create complete custom callout from XIB and handle everything inside callout view as a regular UIView

Check out the example: GitHub