- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
- (void)deleteCell
{
[self.collectionViewMenu performBatchUpdates:^{
[self.itemsArray removeObjectAtIndex:1];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:0];
[self.collectionViewMenu deleteItemsAtIndexPaths:@[indexPath]];
} completion:^(BOOL finished) { }];
}
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** setObjectForKey: object cannot be nil (key: <_UICollectionViewItemKey: 0x8d705e0> Type = SV Kind = UICollectionElementKindSectionHeader IndexPath = <NSIndexPath: 0x8d6f4b0> {length = 2, path = 0 - 0})'
最佳答案
我通过删除页眉和页脚大小代表解决了这个问题。问题在于我没有返回页眉或页脚。
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section;
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section;
关于ios - UICollectionView deleteItemsAtIndexPaths 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18954295/
- (void)deleteCell { [self.collectionViewMenu performBatchUpdates:^{ [self.itemsA
这是我的错误: *** Assertion failure in -[PSUICollectionView _endItemAnimations], /SourceCache/UIKit_Sim/UI
(更新如下) 当我从我的 Collection View 中的一个部分(比如第 0 部分)删除项目时,我发现补充 View (在本例中来自 UICollectionViewFlowLayout 的标题
正如“deleteItemsAtIndexPaths”文档所说 "The collection view updates the layout of the remaining items to ac
我在从 UICollectionView 中删除单个 UICollecitonViewCell 时得到断言。 前提:我有一个单元格(当我有两个或多个单元格时,删除效果很好)。 代码如下: NS
在最简单的示例中,我可以表明我已经尝试过,我正在尝试从 UICollectionView 中删除项目,但是我总是收到不一致的错误: 'NSInternalInconsistencyException'
我有一个 UICollectionView,可以在其中添加和删除单元格。我正在使用 performBatchUpdates 进行这些更改,并且布局按预期进行动画处理。 当我滚动到内容的末尾并删除一个项
我是一名优秀的程序员,十分优秀!