国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS 開發之UITableView 刪除表格單元寫法

2020-07-26 02:43:32
字體:
來源:轉載
供稿:網友

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 刪除表格單元寫法的實例,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 沙湾县| 黄大仙区| 会泽县| 石首市| 会泽县| 马公市| 缙云县| 开江县| 金华市| 平原县| 酒泉市| 保定市| 朝阳市| 射洪县| 巩留县| 铜陵市| 罗田县| 博罗县| 庆元县| 鞍山市| 伊通| 宣武区| 鸡西市| 曲周县| 邳州市| 永康市| 金华市| 嘉义县| 丹东市| 腾冲县| 澎湖县| 侯马市| 嘉鱼县| 九台市| 本溪市| 涿州市| 宁德市| 玛沁县| 漳州市| 松溪县| 平江县|