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

首頁 > 系統 > iOS > 正文

iOS實現UITableView左滑刪除復制即用功能

2019-10-21 18:44:34
字體:
來源:轉載
供稿:網友

開發項目時候需要用到tableview左滑刪除,就研究了一下,話不多說直接上代碼

//設Cell可編輯- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{  return YES;}//設置刪除按鈕-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{  return UITableViewCellEditingStyleDelete;}//進入編輯(刪除)模式-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{    //出現alterView隱藏刪除按鈕  [tableView setEditing:NO animated:YES];  if (editingStyle == UITableViewCellEditingStyleDelete) {    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"你確定刪除該消息?" preferredStyle:UIAlertControllerStyleAlert];    [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];    [alertController addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {      //需要先刪除數據源中對應數據,不然執行下一步會崩潰      [reconnaissanceListArr removeObjectAtIndex:indexPath.row];      [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];    }]];    [self presentViewController:alertController animated:YES completion:nil];  }}//修改編輯按鈕文字-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{  return @"刪除";}//設置進入編輯狀態時,Cell不會縮進- (BOOL)tableView: (UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath{  return NO;}

總結

以上所述是小編給大家介紹的iOS實現UITableView左滑刪除復制即用功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 兴业县| 论坛| 上犹县| 青神县| 高密市| 宁阳县| 池州市| 四川省| 秦皇岛市| 丹巴县| 平乐县| 朝阳县| 弥渡县| 廊坊市| 宜兴市| 平谷区| 明光市| 新营市| 基隆市| 西华县| 延寿县| 班玛县| 阿尔山市| 枝江市| 娱乐| 南投县| 贡嘎县| 青神县| 英吉沙县| 英山县| 察隅县| 松潘县| 浪卡子县| 明光市| 永丰县| 邓州市| 富阳市| 肥乡县| 扎囊县| 平度市| 久治县|