我如何以编程方式在后台推送我的collectionView?现在,它涵盖了我的底线。在Storyboard中很容易,但是我不知道如何以编程方式完成它。
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
}()
使用
self.view.sendSubviewToBack(_ with: UIView)
如果我解决了您的问题,而集合视图的后面还有另一个视图,则该方法。
因此,例如,您的视图具有DashboardController
等的视图。因此,在块中,您希望自己必须具有
self.view.sendSubviewToBack(theCollectionView)
希望对您有帮助。