我在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)
答案 0 :(得分:2)
在你的情况下,我会使用UITableView
获取你想要实现的行列表