UITableView deleteRows 不更新 IndexPaths 导致崩溃索引超出范围
UITableView deleteRows not updating IndexPaths causing crash index out of range
在 API 从列表中删除项目的调用成功时调用以下代码
self?.myWishlistArry?.remove(at: indexPath.row)
self?.myWishListTableView.deleteRows(at: [indexPath], with: .right)
以下是关闭删除按钮
myWishlistCell.closureForRemoveBtn = {
[weak self]
(productId, storeid) in
self?.callAlertViewForRemoved(productid: productId, storeId: storeid, indexPath: indexPath)
}
以下是显示用户确认警报的代码。
func callAlertViewForRemoved(productid :String, storeId: String, indexPath: IndexPath) {
let alertController = UIAlertController(title: AppLocalString.ITEM_NOT_AVAILABLE_TEXT.localized(), message: AppLocalString.MY_EXLUDE_TEXT.localized(), preferredStyle: .alert)
let okAction = UIAlertAction(title: AppLocalString.ALERT_YES.localized(), style: UIAlertAction.Style.default) {
UIAlertAction in
if self.listBool == false {
//self.listBool = true
self.callRemoveWishlist(productid :productid, storeId: storeId, indexPath: indexPath)
}
}
let cancelAction = UIAlertAction(title: AppLocalString.Cancel_ORDER.localized(), style: UIAlertAction.Style.cancel) {
UIAlertAction in
NSLog("Cancel Pressed")
}
// Add the actions
alertController.addAction(okAction)
alertController.addAction(cancelAction)
self.present(alertController, animated: true, completion: nil)
}
以下是代码api删除
func callRemoveWishlist(productid :String, storeId: String, indexPath: IndexPath) {
listBool = true
addLoading(view: view, random: removeRandom)
let addFriendsBaseUrl = AppStrings.baseUrl + AppStrings.addToWishlistAPI
var paramDict = [String : Any]()
paramDict = ["type" : "remove",
"productid" : productid,
"storeid" : "\(storeId)",
"userid" : UserDefaults.standard.value(forKey: AppStrings.userid) ?? ""]
let baseParams = Utility.appendBaseParams(toDict: paramDict as! [String : String])
NetworkResponseManager.getDataFromUrl(url: addFriendsBaseUrl, parameters: baseParams as! [String : String] , completionHandler: {
[weak self]
(response, error) in
self?.listBool = false
if (error == nil) {
if let responseDict = response {
let responseDict = AddToWishlistModel(JSON(responseDict))
self?.removeLoading(view: self?.view, random: self?.removeRandom)
if responseDict.status == 1
{
self?.myWishlistArry?.remove(at: indexPath.row)
self?.myWishListTableView.deleteRows(at: [indexPath], with: .right)
} else {
self?.showToast(message: AppLocalString.OOPS_TEXT.localized())
}
}
} else {
self?.showToast(message: AppLocalString.OOPS_TEXT.localized())
}
})
}
其他table查看代码
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.myWishlistArry?.count ?? 0
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
现在此代码首次运行,但如果尝试删除另一个表明索引超出范围的项目,则会导致崩溃。考虑列表中是否有四个项目 T1、T2、T3 和 T4
第一次如果 我删除 T2 项目 indexPath.row 值是 1 现在项目和行被删除 如果我删除另一个项目说 T4 值indexPath.row 结果是 3 而不是 2 为什么会这样 为什么索引路径没有更新?
根据整个代码,看起来问题出在 clojure
如果您在 clojure 中的 cellForRowAt 中调用它,则索引路径不同(设置为在调用 cellForRowAt 时及时正确的值)。您应该根据愿望清单项目的 id 进行删除(删除项目时不会改变的东西)。
例如创建如下方法:
func deleteWish(productId: string) {
for i in myWishlistArry ?? [] {
let product = myWishlistArry[i]
if let product.productId == productId {
myWishlistArry?.remove(at: i)
myWishListTableView.deleteRows(at: [IndexPath(row: i, 0)], with: .right)
}
}
}
并调用 clojure deleteWish(productId: idOfDeletedProduct)
问题是索引路径被捕获并且在单元格顺序更改后未更新。
解决方法:
在单元格中声明闭包也传递给单元格
var closureForRemoveBtn : ((UITableViewCell, String, String) -> Void)?
并称之为
closureForRemoveBtn?(self, productId, storeId)
在cellForRow
中从实际单元格
获取索引路径
myWishlistCell.closureForRemoveBtn = {
[weak self]
(actualCell, productId, storeid) in
let actualIndexPath = tableView.indexPath(for: actualCell)!
self?.callAlertViewForRemoved(productid: productId, storeId: storeid, indexPath: actualIndexPath)
}
或者更简单
var closureForRemoveBtn : ((UITableViewCell) -> Void)?
///
closureForRemoveBtn?(self)
///
myWishlistCell.closureForRemoveBtn = {
[weak self] actualCell in
let actualIndexPath = tableView.indexPath(for: actualCell)!
self?.callAlertViewForRemoved(productid: actualCell.productId, storeId: actualCell.storeid, indexPath: actualIndexPath)
}
在 API 从列表中删除项目的调用成功时调用以下代码
self?.myWishlistArry?.remove(at: indexPath.row)
self?.myWishListTableView.deleteRows(at: [indexPath], with: .right)
以下是关闭删除按钮
myWishlistCell.closureForRemoveBtn = {
[weak self]
(productId, storeid) in
self?.callAlertViewForRemoved(productid: productId, storeId: storeid, indexPath: indexPath)
}
以下是显示用户确认警报的代码。
func callAlertViewForRemoved(productid :String, storeId: String, indexPath: IndexPath) {
let alertController = UIAlertController(title: AppLocalString.ITEM_NOT_AVAILABLE_TEXT.localized(), message: AppLocalString.MY_EXLUDE_TEXT.localized(), preferredStyle: .alert)
let okAction = UIAlertAction(title: AppLocalString.ALERT_YES.localized(), style: UIAlertAction.Style.default) {
UIAlertAction in
if self.listBool == false {
//self.listBool = true
self.callRemoveWishlist(productid :productid, storeId: storeId, indexPath: indexPath)
}
}
let cancelAction = UIAlertAction(title: AppLocalString.Cancel_ORDER.localized(), style: UIAlertAction.Style.cancel) {
UIAlertAction in
NSLog("Cancel Pressed")
}
// Add the actions
alertController.addAction(okAction)
alertController.addAction(cancelAction)
self.present(alertController, animated: true, completion: nil)
}
以下是代码api删除
func callRemoveWishlist(productid :String, storeId: String, indexPath: IndexPath) {
listBool = true
addLoading(view: view, random: removeRandom)
let addFriendsBaseUrl = AppStrings.baseUrl + AppStrings.addToWishlistAPI
var paramDict = [String : Any]()
paramDict = ["type" : "remove",
"productid" : productid,
"storeid" : "\(storeId)",
"userid" : UserDefaults.standard.value(forKey: AppStrings.userid) ?? ""]
let baseParams = Utility.appendBaseParams(toDict: paramDict as! [String : String])
NetworkResponseManager.getDataFromUrl(url: addFriendsBaseUrl, parameters: baseParams as! [String : String] , completionHandler: {
[weak self]
(response, error) in
self?.listBool = false
if (error == nil) {
if let responseDict = response {
let responseDict = AddToWishlistModel(JSON(responseDict))
self?.removeLoading(view: self?.view, random: self?.removeRandom)
if responseDict.status == 1
{
self?.myWishlistArry?.remove(at: indexPath.row)
self?.myWishListTableView.deleteRows(at: [indexPath], with: .right)
} else {
self?.showToast(message: AppLocalString.OOPS_TEXT.localized())
}
}
} else {
self?.showToast(message: AppLocalString.OOPS_TEXT.localized())
}
})
}
其他table查看代码
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.myWishlistArry?.count ?? 0
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
现在此代码首次运行,但如果尝试删除另一个表明索引超出范围的项目,则会导致崩溃。考虑列表中是否有四个项目 T1、T2、T3 和 T4 第一次如果 我删除 T2 项目 indexPath.row 值是 1 现在项目和行被删除 如果我删除另一个项目说 T4 值indexPath.row 结果是 3 而不是 2 为什么会这样 为什么索引路径没有更新?
根据整个代码,看起来问题出在 clojure
如果您在 clojure 中的 cellForRowAt 中调用它,则索引路径不同(设置为在调用 cellForRowAt 时及时正确的值)。您应该根据愿望清单项目的 id 进行删除(删除项目时不会改变的东西)。
例如创建如下方法:
func deleteWish(productId: string) {
for i in myWishlistArry ?? [] {
let product = myWishlistArry[i]
if let product.productId == productId {
myWishlistArry?.remove(at: i)
myWishListTableView.deleteRows(at: [IndexPath(row: i, 0)], with: .right)
}
}
}
并调用 clojure deleteWish(productId: idOfDeletedProduct)
问题是索引路径被捕获并且在单元格顺序更改后未更新。
解决方法:
在单元格中声明闭包也传递给单元格
var closureForRemoveBtn : ((UITableViewCell, String, String) -> Void)?
并称之为
closureForRemoveBtn?(self, productId, storeId)
在cellForRow
中从实际单元格
myWishlistCell.closureForRemoveBtn = {
[weak self]
(actualCell, productId, storeid) in
let actualIndexPath = tableView.indexPath(for: actualCell)!
self?.callAlertViewForRemoved(productid: productId, storeId: storeid, indexPath: actualIndexPath)
}
或者更简单
var closureForRemoveBtn : ((UITableViewCell) -> Void)?
///
closureForRemoveBtn?(self)
///
myWishlistCell.closureForRemoveBtn = {
[weak self] actualCell in
let actualIndexPath = tableView.indexPath(for: actualCell)!
self?.callAlertViewForRemoved(productid: actualCell.productId, storeId: actualCell.storeid, indexPath: actualIndexPath)
}