我创建了UIView
的子类并将其命名为MSMobileControlView
。我在启用Autolayout的故事板中添加了UIView
对象,并将其分配给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}}
但是我仍然可以在屏幕上看到视图,按钮会按预期响应按键。我没有与MSMobileControlView
相关联的其他代码。
发生了什么事?
答案 0 :(得分:1)
自动布局运行时稍后会为帧指定值。如果您想查看这些已分配的值,请将NSLog
放入viewDidLayoutSubviews
。
如果在开始使用自动布局时我会给你一条建议,那就是忘记帧。只需使用约束。让Auto Layout代表您操作框架,为您提供约束指定的布局。