以编程方式调整容器视图大小

时间:2015-07-16 04:52:58

标签: ios objective-c

我禁用了自动布局和自动尺寸类。我目前正在使用容器视图呈现子视图控制器。

我无法在父视图控制器中作为属性访问容器视图,所以我不知道如何以编程方式设置它的大小?

我想做这样的事情:

<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]; } 类或任何公共类来访问它......

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要将容器视图添加为IBOutlet,然后您才能调整它的大小。