我试图显示UITableView一些简单的数据。我希望设置的静态高度,以UITableView使其在表格末尾不显示空单元格。我怎么做?码:- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { NSLog(@"%d", [arr count]); return [arr count];}
3 回答
心有法竹
TA贡献1866条经验 获得超5个赞
在Xcode 6.1上快速实现
self.tableView.tableFooterView = UIView(frame: CGRectZero)
self.tableView.tableFooterView?.hidden = true
第二行代码不会对演示产生任何影响,您可以使用它来检查是否隐藏。
- 3 回答
- 0 关注
- 395 浏览
添加回答
举报
0/150
提交
取消