我试图弄清楚如何使用自动布局,但我发现了一个问题。我想在 IB 中创建一个大小为 200x200 的视图。这个视图,称为 PieView,有两个 UIImageViews 和框架 (0, 0, 200, 200),它们都适用。我的问题是,如何在代码(我喜欢视觉格式语言)或 IB 中覆盖 updateConstraints,如果我更改 PieView 的大小(例如更改为 100),子视图也会更改(0、0、100、100 )。
以及如何更改 PieView 的大小,我正在尝试宽度和高度
NSLayoutConstraint *width = [NSLayoutConstraint constraintWithItem:self
attribute:NSLayoutAttributeWidth
relatedBy:NSLayoutRelationEqual
toItem:nil
attribute:NSLayoutAttributeNotAnAttribute
multiplier:1.0f
constant:100.f];//kDiameter * sizeCoef];