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

首頁(yè) > 系統(tǒng) > iOS > 正文

IOS 開發(fā)之UITableView 刪除表格單元寫法

2019-10-21 18:45:02
字體:
供稿:網(wǎng)友

IOS 開發(fā)之UITableView 刪除表格單元寫法

實(shí)現(xiàn)代碼:

- (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];    }  }}

那一行是要自己添加的 然后把新加那一行的屬性設(shè)置成UITableViewCellEditingStyleInsert就行了

如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,以上就是IOS 中UITableView 刪除表格單元寫法的實(shí)例,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到IOS開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 蒙阴县| 滕州市| 江孜县| 石泉县| 麟游县| 嵩明县| 张家界市| 清苑县| 廉江市| 五河县| 泾源县| 北川| 南涧| 阳原县| 宁强县| 上思县| 永州市| 保山市| 苏尼特左旗| 芜湖市| 石首市| 荃湾区| 来宾市| 呼伦贝尔市| 长丰县| 永州市| 门头沟区| 民勤县| 墨竹工卡县| 洞口县| 云安县| 陈巴尔虎旗| 石家庄市| 金沙县| 道孚县| 信阳市| 吉木乃县| 永新县| 茌平县| 乐都县| 西安市|