views:

35

answers:

2

Can I make each cell a different height in a UITableView? How so?

+1  A: 

Yes you can. Just implement -tableView:heightForRowAtIndexPath: for your table view delegate, and return different heights for those cells.

KennyTM
+3  A: 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
Aaron Saunders