我的堆栈视图包含图像和标签以显示一些任务。它们都在多行上对齐。
我在Xcode 9上运行没有任何问题,但是当我在Xcode 10 beta 6上运行时,我遇到了一些自动布局问题,我总是会遇到类似于堆栈视图的错误:
Need constraint for X position
Need constraint for Y position
我当前对堆栈视图的限制是:
Leading edge to cell - 5
Trailing edge to cell - 5
Bottom edge to cell - 2
Top edge to cell - 2
所以我看不出对此有什么抱怨,对我来说很明显我已经设置了X和Y。
以下是两个屏幕快照,分别显示了运行时的外观(标签被截断)和情节提要:
答案 0 :(得分:13)
将堆栈视图嵌入UIView中。还提供相对于UICollectionViewCell的视图约束,以使其行为类似于UITableViewCell中的ContentView。