thanks rob
I'm creating the cell here
public override UITableViewCell GetCell (UITableView tableView,
NSIndexPath indexPath)
{
UITableViewCell cell = tableView.DequeueReusableCell
(kCellIdentifier);
if (cell == null)
{
cell = new AccessibilityExtensions
(UITableViewCellStyle.Default, kCellIdentifier);
}
cell.TextLabel.Text = list[indexPath.Row].Name;
cell.Accessory =
UITableViewCellAccessory.DisclosureIndicator;
//UITableViewCell cell1 = new
AccessibilityExtensions();
return cell;
}
is this where i would call the extension?
--
View this message in context:
http://monotouch.2284126.n4.nabble.com/monotouch-uitableview-and-accessibility-tp4303857p4304288.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch