uitableview cell 自定义高度

#pragma mark –
#pragma mark UITableView
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 100*[indexPath row];
}

猜你喜欢

转载自longquan.iteye.com/blog/1683872