I have a UITableView with multiple selection and no grouping. The cells are loaded rendered based on this tutorial described here: http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html
The cell has a UIButton (and something others too) and pressing the button it comes to my function nicely.
I would like to select the cell in my UITableView and if it was selected, than deselect. Remember the UITableView has multiple selection.
here is my source code:
- (IBAction)cellButtonPresed:(id)sender
{
UIButton* button = sender;
button.selected = !button.selected;
int row = button.titleLabel.tag;
NSArray* selPaths = [myTableView indexPathsForSelectedRows];
NSLog(@"cellButtonPresed: before %@, row: %d", selPaths, row);
NSIndexPath *ip = [NSIndexPath indexPathForRow: row inSection:0];
if(button.selected){
[myTableView selectRowAtIndexPath:ip animated:YES scrollPosition:UITableViewScrollPositionNone];
}
else{
[myTableView deselectRowAtIndexPath:ip animated:YES];
}
selPaths = [myTableView indexPathsForSelectedRows];
NSLog(@"cellButtonPresed: after %@", selPaths);
}
on ios 5 works fine, and has the following output:
2012-02-08 12:21:36.369 cellButtonPresed: before (null), row: 1
2012-02-08 12:21:36.371 cellButtonPresed: after (
"<NSIndexPath 0x1a9f20> 2 indexes [0, 1]"
)
2012-02-08 12:21:38.776 cellButtonPresed: before (
"<NSIndexPath 0x1a9f20> 2 indexes [0, 1]"
), row: 4
2012-02-08 12:21:38.778 cellButtonPresed: after (
"<NSIndexPath 0x1a9f20> 2 indexes [0, 1]",
"<NSIndexPath 0x1573d0> 2 indexes [0, 4]"
)
2012-02-08 12:21:51.450 cellButtonPresed: before (
"<NSIndexPath 0x1a9f20> 2 indexes [0, 1]",
"<NSIndexPath 0x1573d0> 2 indexes [0, 4]"
), row: 4
2012-02-08 12:21:51.452 cellButtonPresed: after (
"<NSIndexPath 0x1a9f20> 2 indexes [0, 1]"
)
at ios 4.2 (iphone 3GS) it simply doesn't add the new selection but it replace the existing one:
cellButtonPresed: before (null), row: 1
2012-02-08 12:30:25.566 cellButtonPresed: after (
"<NSIndexPath 0x15ba40> 2 indexes [0, 1]"
)
2012-02-08 12:30:31.184 cellButtonPresed: before (
"<NSIndexPath 0x15ba40> 2 indexes [0, 1]"
), row: 3
2012-02-08 12:30:31.190 cellButtonPresed: after (
"<NSIndexPath 0x175fc0> 2 indexes [0, 3]"
)
2012-02-08 12:30:34.506 cellButtonPresed: before (
"<NSIndexPath 0x175fc0> 2 indexes [0, 3]"
), row: 3
2012-02-08 12:30:34.511 cellButtonPresed: after (null)
2012-02-08 12:30:35.518 cellButtonPresed: before (null), row: 1
2012-02-08 12:30:35.523 cellButtonPresed: after (null)
On ios 4.2 to know what row are selected should I store internally in a NSMutableArray the
row
instead of the ui element model?
- is supported the multiple selection at 4.2 at all?
- is a bug in ios4.2, should I report it?