使用 UICollectionViewCompositionalLayout 的 RTL collectionView

发布于 2025-01-12 01:02:58 字数 181 浏览 0 评论 0原文

我正在尝试找到一种使用 UICollectionViewCompositionalLayout 从右到左 UICollectionView 的方法,但没有关于它的文档。有人有想法吗?

请推荐除翻转 UICollectionView 和单元格之外的任何内容。

I'm trying to find a way to have a right to left UICollectionView using UICollectionViewCompositionalLayout but there's no documentation about it. has anybody an idea?

please recommend anything than flipping the UICollectionView and the cells.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心碎无痕… 2025-01-19 01:02:58

这取决于你的用法,如果你在 tableviewcell 中使用,你必须将其设置为layoutSubviews(),如果你在 viewcontroller 中使用它,你必须在 viewdidload 生命周期之后使用

collectionView.semanticContentAttribute = .forceRightToLeft

it depends on your usage if you use in tableviewcell you must set it to layoutSubviews() and if you use it in viewcontroller you must use in after viewdidload lifecycle

collectionView.semanticContentAttribute = .forceRightToLeft
蘸点软妹酱 2025-01-19 01:02:58

只需在视图控制器中添加以下几行即可。

extension UICollectionViewFlowLayout {
    
    open override var flipsHorizontallyInOppositeLayoutDirection: Bool {
        return true
    }
}

这是覆盖并允许水平翻转 RTL 布局的扩展。

Just add below lines in your view controller.

extension UICollectionViewFlowLayout {
    
    open override var flipsHorizontallyInOppositeLayoutDirection: Bool {
        return true
    }
}

This is extension that over-ride and allow to flip horizontally for RTL layout.

黯然 2025-01-19 01:02:58

有一个对我有用的技巧:

    collectionView.transform = CGAffineTransform(scaleX: -1, y: 1)

在 cellForItemAt 中:

    cell.transform = CGAffineTransform(scaleX: -1, y: 1)

There is a trick it works for me:

    collectionView.transform = CGAffineTransform(scaleX: -1, y: 1)

and in cellForItemAt :

    cell.transform = CGAffineTransform(scaleX: -1, y: 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文