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

首頁 > 系統 > iOS > 正文

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

2020-02-19 15:45:37
字體:
來源:轉載
供稿:網友

相信每一個IOS開發者都知道uitableview,其實uitableview的左幻燈片刪除功能是非常酷,下面由武林技術頻道小編來告訴大家iOS實現UITableView左滑刪除復制即用功能。

//設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左滑刪除復制即用功能,互聯網上還有很多學習知識的平臺,希望想學習的朋友可以收藏武林技術頻道,學習到更多的知識。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 舒兰市| 绥宁县| 淮安市| 沂源县| 喀什市| 仁布县| 芜湖县| 巴南区| 天气| 津南区| 五指山市| 县级市| 舞钢市| 彭泽县| 隆化县| 西和县| 福州市| 山西省| 广元市| 临潭县| 延吉市| 基隆市| 女性| 库尔勒市| 临安市| 霍州市| 虎林市| 江源县| 文水县| 霸州市| 观塘区| 武汉市| 上犹县| 离岛区| 新干县| 天峨县| 亚东县| 镇坪县| 青海省| 六枝特区| 吴忠市|