我在viewDidLoad
中有以下代码。
let collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: layout)
if #available(iOS 9.0, *) {
collectionView.semanticContentAttribute = .ForceRightToLeft
}
然后,当我尝试滚动到viewDidLayoutSubviews
collectionView?.scrollToItemAtIndexPath(indexPath,
atScrollPosition: .CenteredHorizontally,
animated: false)
它不起作用。但是当我改变ForceRightToLeft并使其成为ForceLeftToRight时。它有效。