UICollectionView insertItem -> adjust animation time?

前端 未结 3 1598
滥情空心
滥情空心 2020-12-29 12:28

So, I have a UICollectionView where I insert new items.

I used the most of the suggestions from the Collection View Programming Guide - section \"Making Insertion an

3条回答
  •  我在风中等你
    2020-12-29 13:26

    Or just do

    [UIView animateWithDuration:0.5f animations:^(void) {
      [self.collectionView insertItemsAtIndexPaths:@[newIndexPath]];
    }];
    

    The animation duration will affect the internal duration of the collection view insertion animation.

提交回复
热议问题