0

使用此代码时

  - (void)actionSheet:(UIActionSheet *)actionSheet 
             clickedButtonAtIndex:(NSInteger)buttonIndex
    {
        if (buttonIndex == 0) {

            [self removeCompany:companySelectedInActionSheet]; 

            NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex:
                          indexPathSelectedInActionSheet.section];
            NSLog(@"IndexSet to delete from collection view: %@",indexSet);
            [self.collectionView deleteSections:indexSet]; 
        }
    }

我的应用程序有时会因以下错误而崩溃(10% 的时间):

*** Assertion failure in -[UICollectionView _endItemAnimations], /SourceCache/UIKit_Sim/UIKit-2903.2/UICollectionView.m:3700

有什么想法可能是错的吗?

删除前显示的操作表是否存在潜在问题?

在删除收藏视图部分之前,我是否需要手动关闭它?

4

1 回答 1

1

将您的表视图委托设置为nilonviewDidDisappear

于 2013-10-25T14:42:38.820 回答