Skip to content

Instantly share code, notes, and snippets.

@mborromeo
Created February 16, 2010 13:14
Show Gist options
  • Save mborromeo/305510 to your computer and use it in GitHub Desktop.
Save mborromeo/305510 to your computer and use it in GitHub Desktop.
[iPhone SDK] Set table view cell height
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return [indexPath row] * 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment