I\'ve got a UITableView with each row containing a checkbox using UITableViewCellAccessoryCheckmark. I can\'t figure out how to uncheck all the checkbo
UITableView
UITableViewCellAccessoryCheckmark
Yes, cellForRowAtIndexPath: uses NSIndexPath instead of integer so make indexpath by using
cellForRowAtIndexPath:
NSIndexPath
indexPathForRow:inSection:
if you are using one section then your loop is fine just pass i in row and 0 for section.