nil cell从tableview中移除以进行显示

时间:2011-07-19 10:20:52

标签: ios4

- 任何人都可以帮我删除UITableViewCell,它是nil或者无法保存任何数据

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { //返回节中的行数。 if(flagTable){      return [arrSerSug count]; } 其他{     return [appDelegate.arrSearch count]; } 返回0; }

感谢...

1 个答案:

答案 0 :(得分:0)

使用以下方法将表格属性从 UITableViewStylePlain 设置为 UITableViewStyleGrouped

YourTableView.style=UITableViewStylePlain;

来自Xib文件

它不会显示剩余的细胞。