gpt4 book ai didi

ios - 在 scrollToItemAtIndexPath 时避免动画

转载 作者:行者123 更新时间:2023-11-29 00:55:42 25 4
gpt4 key购买 nike

我需要一个 collectionView 来滚动到没有动画的选定索引。在方法中我使用动画作为 NO。将 NO 传递给它后,它正在拍摄动画。如果有人对此有任何想法,请帮助我。

[self.firstCollPView scrollToItemAtIndexPath:selIndexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:NO];

最佳答案

如果可以解决问题,请尝试在主线程上执行此操作!类似的东西,

 dispatch_async(dispatch_get_main_queue(), ^{

[self.firstCollPView scrollToItemAtIndexPath:selIndexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:NO];

});

关于ios - 在 scrollToItemAtIndexPath 时避免动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37626967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com