加载xib时大小类不起作用

时间:2015-12-03 16:50:18

标签: ios objective-c size-classes

我有一个自定义视图,我加载如下:

MyCustomView *my = [[NSBundle mainBundle] loadNibNamed:@"MyCustomView" owner:self options:nil][0];
my.translatesAutoresizingMaskIntoConstraints = NO;
[view addSubview:my];

//add constraints to make it fill superview

问题是,在iPhone上它只显示大小类Any | Any,忽略了我在Compact | Regular中添加的所有约束更改。

我应该做些什么来让它正确读取我的xib文件中的大小类吗?

0 个答案:

没有答案