IOS 开发之UITableView 删除表格单元写法
更新时间:2017年08月17日 10:45:32 投稿:lqh
这篇文章主要介绍了IOS 开发之UITableView 删除表格单元写法的相关资料,这里提供实例帮助大家实现该功能,希望能帮助到大家,需要的朋友可以参考下
IOS 开发之UITableView 删除表格单元写法
实现代码:
- (void)tableView:(UITableView *)aTableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { NSDictionary *section = [data objectAtIndex:indexPath.section]; if (section) { NSMutableArray *content = [section valueForKey:@"content"]; if (content && indexPath.row < [content count]) { [content removeObjectAtIndex:indexPath.row]; } } [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; } else if (editingStyle == UITableViewCellEditingStyleInsert) { NSDictionary *section = [data objectAtIndex:indexPath.section]; if (section) { // Make a local reference to the editing view controller. EditingViewController *controller = self.editingViewController; NSMutableArray *content = [section valueForKey:@"content"]; // A "nil" editingItem indicates the editor should create a new item. controller.editingItem = nil; // The group to which the new item should be added. controller.editingContent = content; controller.sectionName = [section valueForKey:@"name"]; controller.editingTypes = [section valueForKey:@"types"]; [self.navigationController pushViewController:controller animated:YES]; } } }
那一行是要自己添加的 然后把新加那一行的属性设置成UITableViewCellEditingStyleInsert就行了
如有疑问请留言或者到本站社区交流讨论,以上就是IOS 中UITableView 删除表格单元写法的实例,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
iOS10语音识别框架SpeechFramework应用详解
在iOS10系统了,apple开放了与语音识别相关的接口,开发者可以将其应用到自己的App中,实现用户通过语音进行功能操作。 这篇文章主要介绍了iOS10语音识别框架SpeechFramework应用,需要的朋友可以参考下2016-09-09iOS开发之使用Storyboard预览UI在不同屏幕上的运行效果
使用Storyboard做开发效率非常高,为了防止在团队中发生冲突,采取的解决办法是负责UI开发的同事最好每人维护一个Storyboard, 公用的组件使用轻量级的xib或者纯代码来实现,下面小编就给大家介绍如何使用Storyboard预览UI在不同屏幕上的运行效果,需要的朋友可以参考下2015-08-08
最新评论