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
Use table view delegate method
table view delegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { NSInteger height; if(0 == indexPath.row) { height = 44; } else { height = 50; } return height; }