I have a UITableView in an iOS5.1 application where I installed
self.tableView.allowsMultipleSelection=YES;
Apple's documentation states: "When the value of this property is YES, a check mark is placed next to each line used. Clicking on the line again deletes the check mark.".
I can select multiple lines as the background is set to blue. However, no checkmarks are displayed. Is it necessary to check the box as shown below in the didSelectRowAtIndexPath file because I use custom UITableViewCells?
cell.accessoryType = UITableViewCellAccessoryCheckmark;
objective-c uitableview
Chrisp
source share