在做图片浏览的时候,需要在进入预览的时候,将collectionView滚动到点击的视图位置,这时候就使用到了scrollToItemAtIndexPath:atScrollPosition: animated:方法,但是在iOS14的系统上,该方法没有生效,这里记录下相关问题的解决方法。
在合适的时候调用,如果是使用自动布局,建议在下面的方法中调用:
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
if let index = beginIndexPath {
collectionView.scrollToItem(at: index, at: .centeredHorizontally, animated: false)
}
}
影响scrollToItemAtIndexPath未生效的原因是scrolViewl的自适应布局,只需要做以下设置即可:
override func viewDidLoad() {
super.viewDidLoad()
if #available(iOS 11.0, *) {
collectionView.contentInsetAdjustmentBehavior = .never
} else {
self.automaticallyAdjustsScrollViewInsets = false
}
}
网友评论