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

首頁 > 系統 > iOS > 正文

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

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

開發項目時候需要用到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左滑刪除復制即用功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阿拉善右旗| 应城市| 会昌县| 南京市| 高要市| 嘉峪关市| 上林县| 晋中市| 四子王旗| 宜宾市| 施秉县| 禹州市| 乐平市| 广西| 兖州市| 马尔康县| 内江市| 公安县| 图木舒克市| 龙井市| 怀柔区| 莒南县| 十堰市| 富宁县| 措美县| 徐州市| 孙吴县| 宝应县| 石楼县| 通城县| 通州市| 平乡县| 伽师县| 溆浦县| 灵川县| 蒲江县| 闽清县| 中卫市| 阜城县| 丰镇市| 东光县|