91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在iOS中利用tableView實現一個左滑刪除功能

發布時間:2021-01-19 16:42:20 來源:億速云 閱讀:325 作者:Leah 欄目:移動開發

怎么在iOS中利用tableView實現一個左滑刪除功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

方法如下

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
 if (editingStyle == UITableViewCellEditingStyleDelete) {

 // 刪除數據源的數據,self.cellData是你自己的數據
 [self.cellData removeObjectAtIndex:indexPath.row];
 // 刪除列表中數據
 [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
 }

}

默認刪除的文字為 Delete,要改為中文實現

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
 return @"刪除";//默認文字為 Delete
}

下面這兩個代理方法不用寫也可以,默認就是這樣

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
 return UITableViewCellEditingStyleDelete;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
 return YES;
}

如果你報了這個錯誤:

'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (5) must be equal to the number of rows contained in that section before the update (5), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out)

你把代理方法中這兩個方法順序搞混了,先刪除數據,再刪除 cell

[self.cellData removeObjectAtIndex:indexPath.row];這個方法在前

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];這個方法在后

還有就是,別2到沒設置代理,tableView.delegate = self;

看完上述內容,你們掌握怎么在iOS中利用tableView實現一個左滑刪除功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博客| 陵川县| 宜川县| 昌图县| 廊坊市| 龙井市| 延吉市| 昌吉市| 临洮县| 商水县| 德惠市| 个旧市| 阿巴嘎旗| 安泽县| 汨罗市| 东港市| 雷波县| 巴彦淖尔市| 开远市| 白河县| 沁水县| 宝山区| 开封市| 濮阳县| 镇远县| 施秉县| 九寨沟县| 五华县| 平昌县| 汉源县| 沙坪坝区| 叙永县| 盐边县| 阜城县| 栾城县| 黄龙县| 濮阳县| 洪洞县| 察雅县| 武城县| 阜新|