[UIView performWithoutAnimation:^{
[_collectionView reloadSections:indexSet];
}];
//视图转换时不执行动画,参数为block对象,来执行你要执行的代码
+ (void)performWithoutAnimation:(void (^)(void))actionsWithoutAnimation
[UIView performWithoutAnimation:^{
[_collectionView reloadSections:indexSet];
}];
//视图转换时不执行动画,参数为block对象,来执行你要执行的代码
+ (void)performWithoutAnimation:(void (^)(void))actionsWithoutAnimation