我有一个自定义视图,我加载如下:
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文件中的大小类吗?