我禁用了自动布局和自动尺寸类。我目前正在使用容器视图呈现子视图控制器。
我无法在父视图控制器中作为属性访问容器视图,所以我不知道如何以编程方式设置它的大小?
我想做这样的事情:
<style>
但似乎没有@interface ViewController ()
@property (nonatomic) NSContainerView *container;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self.container setFrame:CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.height];
}
类或任何公共类来访问它......
答案 0 :(得分:0)
您需要将容器视图添加为IBOutlet,然后您才能调整它的大小。