首页 > 代码库 > iOS开发学习之#表视图#(1)删除行
iOS开发学习之#表视图#(1)删除行
好久木有写博客了,前面学习的表视图其他内容都木有写,今天就从删除行开始吧,希望自己能够坚持下去。。加油↖(^ω^)↗。。废话少说吧,,,直接上代码:
下面是删除行的核心代码:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if (editingStyle ==UITableViewCellEditingStyleDelete) {
[aremoveObjectAtIndex:indexPath.row];
[tvdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
@interface ViewController :UIViewController<UITableViewDataSource,UITableViewDelegate>{
IBOutletUITableView *tv;
NSMutableArray *a;
NSArray *b;
}
iOS开发学习之#表视图#(1)删除行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。