How can you put a checkmark beside all the cells and remove the checkmark with a click of a UIToolBarButton? Is this possible?

I have tried to iterate through the number of cells loading in the tableview but I don't know how to set the accessorytype to checkmark for all of them and then back to none when all of them are checked?

link|improve this question

Just to let you know, I wrote an IBAction and linked it to the toolbarbutton. Using the for loop I counted the number of cells in the tableview loaded on the screen but the problem is I dont know how to set the indexPath to each of them and then set the cell.accessorytype property to checkmark or none. – thebrowndoode Nov 6 '11 at 23:28
feedback

1 Answer

up vote 0 down vote accepted

Don't change the cells directly -- change the data that's used to populate the cells, and then tell the table to reload it's data.

So, you'll need the following:

  • a way to store represent the 'checked state' in the data that the cells represent;

  • a way to set the accessory for a single cell in your -tableView:cellForRowAtIndexPath: method according to the value of the 'checked state' for the item that the cell in question represents

For a normal UITableViewCell, you can set the accessory by saying something like:

cell.accessoryType = item.isChecked ? UITableViewAccessoryCheckmark : UITableViewAccessoryNone;
link|improve this answer
Caleb I get your point. The situation is pretty complex here. I am doing the checking and unchecking(i.e. the accessory on a single click changes to checked and if its checked already it becomes unchecked and vice-versa) in the cellForRowAtIndexPath method.. Could I write a separate function where I could iterate through whole of my tableview and without getting the checked state(because it doesnt matter to me if its checked or no), just uncheck all of them.. – thebrowndoode Nov 6 '11 at 23:32
Again, no, you don't want "iterate through the table." You want to iterate through the data that's represented by the table. In most cases, the table only contains the cells that you can see -- cells that scroll off one end are recycled and used for cells that are about to scroll on from the other. If you try to set some state for a given row by changing the cell, that change will be forgotten as soon as the cell is no longer visible. If you change your data and let that drive the appearance of the cells your changes will be remembered properly. – Caleb Nov 7 '11 at 0:22
First, I dont get you are trying to say here if you change your data and.. I am pretty sure I need not change my data to do a mere simple accessoryType change as I am not saving any of this data anywhere. Second, I am pretty sure you didn't understand my case. Sir, I am not trying to be rude in any case possible. Its just that I am fairly new to iPhone programming. – thebrowndoode Nov 7 '11 at 0:39
Steps I need to accomplish - psuedo code 1.-(IBAction) reset{ (for all the cells in the tableview){ set the accessorytype to None } 2. -(IBAction)SelectAll{ (for all the cells in the tableview){ set the accessorytype to checkMark } Thats all I want. If you could help me with that, it would be really nice of you. Thank you for your time :) – thebrowndoode Nov 7 '11 at 0:44
How do you know what to put in each cell? Usually, there's an array or similar structure that contains the items represented in the table. If you have that, that's where you want to store the checked/unchecked state of the row. If your table contains only static cells (cell content determined by data built into the code) you may need to create an array to store the checked/unchecked state . If you're still stuck, try posting some code, such as your -tableView:cellForRowAtIndexPath:. – Caleb Nov 7 '11 at 0:50
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.