Reputation: 2448
I would like to select a cell in a tableview, except with code before any user interaction.
Is this at all possible, a quick search through the sdk notes doesnt yield anything. Where should I look?
Regards
Upvotes: 0
Views: 681
Reputation: 170839
UITableView class, "Managing Selections" section.
- (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition
Upvotes: 4