On 17.01.2012 17:42, chris maley wrote:
hi

I'm using the uitableview without interface builder and want to add voice
over commands to my labels

problem

I need to add voice over commands to each cell so that it is accessible. i
found this code but i have no idea when to call this fuction. Is there away
that I can add this functionality to each cell during data binding to the
uitableview?

Whenever you create (or reuse) a cell, simply invoke
the extension method on the cell object:

UITableViewCell cell;
...
cell.SetAccessibilityLabel("some text");

Robert


http://pastebin.com/0bqJaP0B


_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to