Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我制作自定义 UIViews 时,我通常首先创建一个 xib 文件,然后在 Attributes Inspector 中将 Simulated Metrics 部分中的 Size 属性更改为 None,这样我就可以将视图调整为我想要的大小。我想知道,这个设置和自由格式设置有区别吗?我正在使用 Xcode 4.6。
更改模拟指标的唯一区别是视图在界面构建器中的外观。您可以转到检查器的大小选项卡并更改视图的大小。在 iOS 中,这仅在您将一个视图包含在另一个视图中并想查看它的外观时才有用
UIViewcontroller *vc = ... [self addChildViewController:vc]; [self.view addSubview:vc.view]; vc.view.frame = CGRectMake(0, 0, 50, 50);