我创建了 UIView 的子类并将其命名为 MSMobileControlView 。我将 UIView 对象添加到启用自动布局的 Storyboard 中,并将其类分配给 MSMobileControlView 。
在 MSMobileControlView 我有这个代码:
-(void)didMoveToSuperview
{
NSLog(@"self.frame: %@", NSStringFromCGRect(self.frame));
UIBUtton *levelButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[levelButton setFrame:CGRectMake(0, 0, 150, 40)];
[levelButton setTitle"Next Level" forState:UIControlStateNormal];
[self addSubview:levelButton];
}
NSLog 输出为:
self.frame: {{0, 0}, {0, 0}}
但是我仍然可以在屏幕上看到 View ,并且按钮会按预期响应点击。我没有与 MSMobileControlView 关联的其他代码。
怎么回事?
Best Answer-推荐答案 strong>
自动布局运行时稍后将值分配给框架。如果您想查看这些分配的值,请将您的 NSLog 放在 viewDidLayoutSubviews 中。
如果在开始使用自动布局时我会给你一条建议,那就是忘记框架。只需使用约束即可。让自动布局代表您操作框架,为您提供约束指定的布局。
关于ios - UIView 的宽度和高度为零,即使它是可见的,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/18144163/
|