我在uinavigationbar上添加了一个按钮,我想用它来清除uitablview的所有行
我怎样才能做到这一点?
最佳答案
有点晚了...但是尝试一下:
您要清除表的位置:
// clear table
clearTable = YES;
[table reloadData];
clearTable = NO;
该函数应如下所示:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if(clearTable)
return 0;
(...)
}