我添加了一个带有自己的 xib 的自定义视图类。在 xib 中,File's Owner -> Custom Class 设置为“MyCustomView”。
我在情节提要中添加了一个空白视图,其中类设置为“MyCustomView”
当我运行我的应用程序时,我看不到我的视图正确显示。不过,我确实看到2013-03-01 16:52:48.283 Test[56785:c07] MyCustomView initWithCoder
任何想法出了什么问题?
我在这里隔离了这个错误:http: //bit.ly/YdDbqU
谢谢!
编辑:
- 我关闭了自动布局
我使用了以下内容:
UIView *subview = [[NSBundle mainBundle] loadNibNamed:@"MyCustomView" owner:self options:nil].lastObject; subview.frame = self.myCustomViewInstance.bounds; [self.view addSubview:subview];
一切正常!