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

首頁 > 系統 > iOS > 正文

iOS UITableViewCell側滑刪除遇到的坑

2019-11-09 18:53:51
字體:
來源:轉載
供稿:網友

做項目中遇到一個小問題,給大家分享一下

以前做刪除是這樣,實現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{    if (editingStyle == UITableViewCellEditingStyleDelete) {        // Delete the row from the data source.      }}// 修改編輯按鈕文字- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{    return @"刪除";}

OK 上面可以,但是因為項目支持iOS8.0以上,并且需要左滑刪除和重命名兩種編輯模式,所以我選用了IOS8.0以后的新代理方法

-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{        UITableViewRowAction *renameRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"重命名" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {               // 重命名操作    }];    UITableViewRowAction *deleteRoWAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"刪除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {                 // 刪除操作    }];       return @[deleteRoWAction,renameRowAction];}

這時候側滑,iOS8真機直接側滑沒有反應,調試顯示沒走新代理方法(iOS9以上真機木有問題)。哎 說好的支持iOS8.0以上呢?

解決辦法:

很簡單就是把舊的代理方法寫上就OK,里面什么也不做

// 進入編輯模式,進行刪除操作- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{    }應該是iOS8.0中 若舊的代理方法沒有實現,然后就調用新的代理方法


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巫山县| 肇东市| 吐鲁番市| 金平| 清流县| 河间市| 行唐县| 拜城县| 车致| 新余市| 邓州市| 沙田区| 五河县| 余江县| 南京市| 澄迈县| 海晏县| 家居| 凯里市| 永顺县| 嘉禾县| 惠安县| 巴东县| 云霄县| 宁远县| 黑水县| 通山县| 宜城市| 德令哈市| 盘山县| 古蔺县| 独山县| 晋江市| 米泉市| 开平市| 车致| 瓦房店市| 马关县| 南雄市| 西安市| 会同县|