我尝试使用cell.contentview.bounds但它给出的错误是它不可分配的东西。有人知道怎么做吗?
答案 0 :(得分:2)
使用tableView delegate
方法:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 80; //returns height for the tableview cell
}
答案 1 :(得分:1)
你只需要一行代码......
[tableview setRowHeight:100];