我的应用程序崩溃了,当我选择单元格NO时,我的UICollectionView中有300个单元格。 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)
}

09-30 20:14