无法在自定义视图中加载NIB

时间:2013-04-27 03:31:13

标签: ios

我创建了一个自定义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;
}

1 个答案:

答案 0 :(得分:3)

我将它移动到LoadDidView并且它有效。