Iphone: Check List
Is there standard way to implement standard Iphone Check List like when you choose ringtone in Settings ? 开发者_StackOverflow社区When you click on a row and checkmark appears ...
Or I should draw a checkmark by myself and set it by row index ?
You don't need to actually draw it. You can use:
[self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
精彩评论