iOS在tableview中有很多单元格

时间:2012-08-13 14:37:57

标签: objective-c ios

我在查看tableview的大小时遇到​​了麻烦,因为我放了几个单元格,当我显示时,会出现一个滚动条并且滚动不足以看到我的所有单元格,我尝试更改tableview的高度而我不能。

1 个答案:

答案 0 :(得分:1)

您是否正确实施了此方法?

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectio
{
    return 5; // If you have 5 cells.
}