尝试添加按钮"添加新"在UICollecitonView
的最后。
使用CoreData
。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! CollectionCell
configureCell(cell: cell, indexPath: indexPath)
var numberOfItems = self.collectionView(self.collectionView, numberOfItemsInSection: 0)
if (indexPath.row == numberOfItems - 1) {
var addCellButton = UIButton(frame: cell.frame)
addCellButton.setTitle("Add", for: UIControlState.normal)
cell.addSubview(addCellButton)
}
return cell
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if let sections = controller.sections {
let sectionInfo = sections[section]
return sectionInfo.numberOfObjects + 1
}
return 0
}
错误:' NSInvalidArgumentException',原因:'索引0处的索引3处没有对象'
我是否需要检查NSFetchedResultsController
的界限?
正如这里提出的那样:Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no object at index 3 in section at index 0'
答案 0 :(得分:0)
您告诉UICollectionView
该部分中您有一个额外项目,而不是NSFetchedResultsController
中存储的项目。
我相信当您尝试从NSFetchedResultsController.object(at: IndexPath)
方法访问configureCell
时,您会说那个“额外”项目会引发异常。
如果您希望“添加新”按钮与其他所有按钮显示在同一类型的单元格中,则应停止在collectionView(numberOfItemsInSection:)
或者,您可以创建一个不同类型的单元格放在最后,只需添加“添加”按钮,然后在单元格出列之前移动if
语句。如果您正在填充最后一项,则使用该按钮将“AddNew”单元标识符出列。否则,您将“Cell”标识符出列,并将其配置为显示NSFetchedResultsController
。