0

我正在尝试根据运行时的某些条件从子文件夹中加载 NiB 文件。问题是当我调用方法 pathForResource 时代码能够找到 NIB 文件,但是当我运行应用程序时,我总是收到以下错误

由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'无法在包中加载NIB:'NSBundle

这是我的代码:

// The designated initializer. Override to perform setup that is required before the view is loaded.

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {

if(somecondition == true)
{        
    NSString* nibPath = [[NSBundle mainBundle] pathForResource:nibNameOrNil ofType:@"xib" inDirectory:@"CAS"];
    NSString* customPath = [nibPath stringByDeletingLastPathComponent];

    NSBundle* localeBundle = [NSBundle bundleWithPath:customPath];

    if (localeBundle!= nil) { 
        nibBundleOrNil = localeBundle;
    }
}

}


if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {

}

return self;
}
4

1 回答 1

1

您的 NIB / XIB 应该包含在您的 xCode 项目中。它们应该在同一个文件夹中。您只能加载导入到您的项目的 NIB / XIB。

于 2011-11-18T02:24:06.763 回答