我正在开发一个应用程序。此应用程序包含TableView如果我曾经在某些操作后单击该行要隐藏的任何一行,Can Any one help?
答案 0 :(得分:0)
我有一个建议:
@property (nonatomic, strong) NSArray *tableItems;
@property (nonatomic) NSInteger hideIndex;
添加UITableView委托方法和didSelectRowAtIndex方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Store index of row to hide.
self.hideIndex = indexPath.row;
}
创建您的操作方法
- (void) doOperation {
// Remove index from table datasource.
@try {
NSMutableArray *tempArray = [NSMutableArray arrayWithArray:self.tableItems];
[tempArray removeObjectAtIndex:self.hideIndex];
self.tableItems = [NSArray arrayWithArray:tempArray];
tempArray = nil;
[self.tableView reloadData];
}
@catch (NSException *exception) {
NSLog(@"Handle exception");
}
}
这样,下次重新加载UITableView时会显示剩余的单元格。并删除您选择的单元格。