因未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'尝试滚动到无效的索引路径

时间:2018-03-27 15:12:55

标签: ios swift xcode crash uicollectionview

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

  

由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'尝试滚动到无效的索引路径:{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)
}

请帮我解决这个问题:)

1 个答案:

答案 0 :(得分:0)

检查数组计数

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