滚动RTL UICollectionView

时间:2016-05-02 21:25:47

标签: ios objective-c swift uicollectionview right-to-left

我在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时。它有效。

0 个答案:

没有答案