gpt4 book ai didi

ios - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序,原因 : 'attempt to scroll to invalid index path

转载 作者:行者123 更新时间:2023-11-30 11:38:10 26 4
gpt4 key购买 nike

我的应用程序发生崩溃,当我选择单元格 NO 时,我的 UICollectionView 中有 300 个单元格。 300 告诉我这个崩溃:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'attempt to scroll to invalid index path: {length = 2, path = 0 - 300}'

代码:

var EnabledID = Int()
EnabledID = UserDefaults.standard.integer(forKey: "EnabledID")

if EnabledID == 0 {
EnabledID = 1
UserDefaults.standard.set(1, forKey: "EnabledID")

} else {
let index = NSIndexPath(item: EnabledID, section: 0)
self.myCollectionView.scrollToItem(at: index as IndexPath, at: .centeredHorizontally, animated: true)
}

请帮我解决这个问题:)

最佳答案

检查数组数量

if EnabledID < arr.count
{
let index = NSIndexPath(item: EnabledID, section: 0)
self.myCollectionView.scrollToItem(at: index as IndexPath, at: .centeredHorizontally, animated: true)
}

关于ios - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序,原因 : 'attempt to scroll to invalid index path,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49516599/

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