1

我这样的代码动画效果UICollectionView,但细胞消失

[UIView animateWithDuration:0.1 animations:^ 
{ 
    [ccController.collectionView setFrame:CGRectMake(0, 0, self.view.frame.size.width, 0)]; 
} completion:^(BOOL finished){ 
    [_selectTabV setHidden:YES]; 
}]; 

细胞立即消失,而动画还未结束。 为什么? 如何让细胞消失遵循集合视图动画? 谢谢!

回答

0

请在动画块之前拨打[ccController.collectionView layoutIfNeeded];

相关问题