gpt4 book ai didi

ios - 为什么 UICollectionView reloadData 会导致我的应用崩溃?

转载 作者:搜寻专家 更新时间:2023-11-01 05:44:20 25 4
gpt4 key购买 nike

我正在使用 uicollectionview 显示一些照片,我有一个按钮允许用户删除所选照片。

除非我尝试删除用于填充 uicollectionview 的照片数组中的最后一张照片,否则它会完美运行。也就是说,如果有 5 张照片,那么如果用户删除了第 5 张照片而不是第 1、2、3 或 4 张照片,就会出现问题。当我尝试删除第 5 张照片时,它在 reloadData() 上崩溃并出现以下错误

由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“尝试从更新前仅包含 4 项的第 0 节中删除第 4 项”

我不明白为什么会发生这种情况...该错误甚至提到“尝试删除”,但我从未真正告诉过它我正在删除任何内容。我只是更改了源,然后要求它更新。同样在错误消息中,它说该部分在更新前仅包含 4 个项目,而实际上它们是 5 张照片。为什么?

关于我在做什么以及如何(使用 Swift)的更多信息......

我有一个 ProgressPhotoSheetClass,我从中实例化了对象 progressPhotoSheet

这个 progressPhotoSheet 对象有一个照片数组,照片可以有优先级,例如照片 ID、标题等

在我使用的部分中的项目数量

var numPics: Int = progressPhotoSheet.progressPhotos.count
return numPics

在我使用的 cellForItemAtIndexPath 中

let cell = collectionView.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as! PhotoHolder
cell.photoTitle.text = progressPhotoSheet.progressPhotos[indexPath.row].photoName

...等..

删除我使用的项目时

progressPhotoSheet.deletePhoto(progressPhotoSheet.progressPhotos[indexPath.row].photoId)

它从设备和我的核心数据中删除了照片,然后使用修改后的核心数据重新加载 progressPhotoSheet.progressPhotos,因此它现在完全是以前的样子,但没有删除的照片。

然后我打电话

self.collectionView.reloadData()

应该为新数据更新 UICollectionView

如果我在使用时感觉 Collection View 中的内容与数据源中的内容不匹配,我可以理解 self.collectionView.deleteItemsAtIndexPaths(indexPaths)因为那会说被忽略以使它们匹配我们需要删除一个项目 - 这里有可能某些东西可能不匹配..但是肯定使用 self.collectionView.reloadData() 进行什么更改并不重要它应该只是查看现在有什么数据并相应地更新 UICollectionView....

所以我的问题是......为什么我会收到此错误以及我应该如何解决问题以免我不明白?

编辑以包含更多信息

这是我的长焦代码

func deletePhoto(photoId: Int) {

// Set up Core Data Managed Object Context
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
let managedContext = appDelegate.managedObjectContext!



// Fetch correct photo
let fetchRequest = NSFetchRequest(entityName: "CDProgressPhoto")
fetchRequest.predicate = NSPredicate(format: "photoId = %@", String(photoId))

// Save
if let fetchResults = managedContext.executeFetchRequest(fetchRequest, error: nil) as? [NSManagedObject] {
if fetchResults.count != 0{

// Will only be one photo with this photo id
var photo = fetchResults[0]

photo.setValue(true, forKey: "toDelete")

// Save the object
var error: NSError?
if !managedContext.save(&error) {
println("Could not save \(error), \(error?.userInfo)")
}
}
}



// Reload from core data
self.loadPhotoSheetFromCoreData()
}

self.loadPhotoSheetFromCoreData() 然后在从核心数据获取新数据之前清空 progressPhotoSheet.progressPhotos...代码如下...

private func loadPhotoSheetFromCoreData() {

if(self.hasPhotoSheet()) {

// Clear existing photos
self.progressPhotos = []

// Set up Core Data Managed Object Context
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
let managedContext = appDelegate.managedObjectContext!

let request = NSFetchRequest(entityName: "CDProgressPhoto")
let predicate1 = NSPredicate(format: "photoSheetId == %@", String(self.sheetId))
let predicate2 = NSPredicate(format: "toDelete == %@", false)
request.sortDescriptors = [NSSortDescriptor(key: "date", ascending: false) as NSSortDescriptor]
var predicatesArray: [NSPredicate] = [predicate1, predicate2]
//predicatesArray.append(predicate1)
request.predicate = NSCompoundPredicate.andPredicateWithSubpredicates(predicatesArray)
let existings = managedContext.executeFetchRequest(request, error: nil)
let existingPhotos: [CDProgressPhoto] = existings as! [CDProgressPhoto]

// for each photo make a ProgressPhoto object and add to progress photos array
for photo in existingPhotos {
var newPhoto: ProgressPhoto = ProgressPhoto()
newPhoto.photoSheetId = Int(photo.photoSheetId)
newPhoto.photoId = Int(photo.photoId)
newPhoto.photoName = photo.photoName
newPhoto.date = Int(photo.date)
newPhoto.url = photo.url
newPhoto.filename = photo.filename
newPhoto.height = Float(photo.height)
newPhoto.width = Float(photo.width)
newPhoto.selected = false

self.progressPhotos.append(newPhoto)
}

}
}

如您所见,此时照片实际上并未删除,我只是将 toDelete 标志设置为 true,然后仅重新加载 toDelete 设置为 false 的项目。照片稍后会根据网络连接等情况异步删除,因为它们也存储在服务器上以供在主网站上使用。

最佳答案

您是否尝试过在 collectionView 上调用 invalidateLayout()?如果您的 View 为空,即存在 0 个元素,这可能会有所帮助。

关于ios - 为什么 UICollectionView reloadData 会导致我的应用崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30556893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com