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
If you need accessing the cell object, then using UITableViewCell method cellForRowAtIndexPath is quite appropriate.
That may either just pass the cell, if it is visible, or call the delegate method cellForRowAtIndexPath (do not mix them up) which you should provide. If that one crashes then dig deeper and investigate the root cause of the crash.