我创建了一个自定义UIView
并且具有LoginView.h和LoginView.m以及LoginView.xib
当我在视图控制器中初始化它时,它会给我带来错误。
'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle
:
-(id)initWithCoder:(NSCoder *)aDecoder{
if(self = [super initWithCoder:aDecoder])
{
loginView=[[LoginView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width
, self.view.frame.size.height)];
[self.view addSubview:loginView];
}
return self;
}
答案 0 :(得分:3)
我将它移动到LoadDidView并且它有效。