从资源包(非主)加载本地化的 xib 文件
Posted
技术标签:
【中文标题】从资源包(非主)加载本地化的 xib 文件【英文标题】:Loading localized xib file from resource bundle (not main) 【发布时间】:2015-06-03 00:14:41 【问题描述】:我使用 CocoPad 创建了一个资源包,其中包含本地化字符串、图像和 xib 文件。我在加载本地化字符串和图像时没有问题,但我在使用类似方法加载 xib 文件时遇到问题。这是我尝试过的一种方法:
NSString *nibName = @"MyTestViewController";
NSBundle *resourceBundle = [NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"MyTestResources" withExtension:@"bundle"]];
NSString* path= [resourceBundle pathForResource:@"en" ofType:@"lproj"];
NSBundle* nibBundle = [NSBundle bundleWithPath:path];
return [[MyTestViewController alloc] initWithNibName:nibName bundle:nibBundle];
我得到了 'NSInternalInconsistencyException',原因:'Could not load NIB in bundle: 'NSBundle (not yet loaded)' with name
我已经把nibBundle中的文件打印出来了,文件就在那里。
【问题讨论】:
【参考方案1】:我刚刚在Apple Developer web 网站上看到了
在 UIKit 中,应用程序只能从它们的主包中加载 nib 文件,因此需要的选项更少。但我想知道是否有其他选择。
【讨论】:
以上是关于从资源包(非主)加载本地化的 xib 文件的主要内容,如果未能解决你的问题,请参考以下文章
ViewController 不会在本地化应用程序中加载其 xib 文件每当我删除并重新安装时?