gpt4 book ai didi

ios - 插入单元格不会更新 insetForSectionAtIndex

转载 作者:行者123 更新时间:2023-11-30 13:14:23 30 4
gpt4 key购买 nike

使用以下命令将单元格插入集合:

 let index = data.count-1
let indexPath = NSIndexPath(forItem: index, inSection: 0)
collectionView.insertItemsAtIndexPaths([indexPath])

可以工作,但不会在更新时调用此委托(delegate):

 func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets {

为什么我需要这个?因为我根据索引对齐单元格,所以插入时新单元格最能正确对齐(左/右)。

是否可以在插入时调用它? (不想处理 cellForItemAtIndexPath 内的位置)

最佳答案

不,您提到的委托(delegate)方法只会为部分调用,而不为单元格调用。

您可以在单元格内对齐 UI 元素,而不是对齐单元格本身。

关于ios - 插入单元格不会更新 insetForSectionAtIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38393787/

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