Say I have a table with 10 static cells in it, is there a way to select a certain cell programmatically?
I\'ve tried this
UITableViewCell *cell = [se
You can try this...
UITableViewCell *cell = (UITableViewCell*)[yourTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:rowvalue inSection:0]];