美文网首页
UICollectionViewCell 从右向左反向排列

UICollectionViewCell 从右向左反向排列

作者: 柠檬小札 | 来源:发表于2018-01-30 17:49 被阅读0次

    UICollectionView的默认排列顺序是从左到右,但是有时候我们的需求可能要求要从右到左排列。这个时候我们可以重写一个苹果的方法-(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection改变排序方向

    -(UIUserInterfaceLayoutDirection)effectiveUserInterfaceLayoutDirection

    {

        return UIUserInterfaceLayoutDirectionRightToLeft;

    }

    相关文章

      网友评论

          本文标题:UICollectionViewCell 从右向左反向排列

          本文链接:https://www.haomeiwen.com/subject/hzbczxtx.html