我在Swift中有一个UIView

let postDiv: UIView = {
    let div = UIView()
    return div
}()
profile_view.addSubview(postDiv)
profile_view.addSubview(PostDiv)
profile_view.addSubview(PostDiv)

当我仅将其中一个添加为子视图时,它可以工作,但是当我添加多个时,它们彼此重叠,因此只有它们可见,我如何才能彼此添加锚点。这是我当前的锚点
postDiv.anchor(postsDiv.bottomAnchor, left:view.leftAnchor, bottom: nil, right: view.rightAnchor, topConstant: 40, leftConstant: 15, bottomConstant: 0, rightConstant: 15, widthConstant: 0, heightConstant: 165)

最佳答案

在您的情况下,我将使用UITableView作为您要实现的行的列表

关于ios - 相同元素的快速 anchor ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42959029/

10-13 05:09