Swift-在后台推送CollectionView

问题描述 投票:0回答:1

我如何以编程方式在后台推送我的collectionView?现在,它涵盖了我的底线。在Storyboard中很容易,但是我不知道如何以编程方式完成它。

enter image description here

    let theCollectionView: UICollectionView = {
    let v = UICollectionView(frame: CGRect.zero, collectionViewLayout: UICollectionViewFlowLayout())
    v.translatesAutoresizingMaskIntoConstraints = false
    v.backgroundColor = .white
    v.contentInsetAdjustmentBehavior = .always
    v.layer.cornerRadius = 30
    return v
}()
ios swift layer
1个回答
0
投票

使用

self.view.sendSubviewToBack(_ with: UIView)

如果我解决了您的问题,而集合视图的后面还有另一个视图,则该方法。

因此,例如,您的视图具有DashboardController等的视图。因此,在块中,您希望自己必须具有

self.view.sendSubviewToBack(theCollectionView)

希望对您有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.