如何增加tableview单元的contenview的大小? (不使用customtableviewcell)

时间:2013-11-08 12:51:50

标签: ios uitableview

我尝试使用cell.contentview.bounds但它给出的错误是它不可分配的东西。有人知道怎么做吗?

2 个答案:

答案 0 :(得分:2)

使用tableView delegate方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

     return 80; //returns height for the tableview cell    

  }

答案 1 :(得分:1)

你只需要一行代码......

[tableview setRowHeight:100];