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
2010-10-04 21:18:45
+3
A:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
Aaron Saunders
2010-10-04 21:18:53