0

我有一个带有四个静态单元格的 uitableview 第一个单元格有一个 uitextview 第二个和第三个和常规单元格第四个单元格有 uitextview

我需要第一个和第四个单元格根据内容大小来增长和缩小。第四个单元格将有更大的文本,因此整个页面应该滚动。

任何想法如何做到这一点?谢谢。

D.

4

1 回答 1

0

您可以使用 :

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

if (indexPath.row == 0) {

    // Your code to find height of the text whic will display in UITextView.

}else{

    // your default cell height
}

}

希望这会帮助你。

一切顺利 !!!

于 2013-03-08T06:07:19.800 回答