我正在以可可豆荚的形式在iOS库中工作。在这个库中,我有一个自定义视图:
@interface PlayerView : UIView
@property (strong, nonatomic) IBOutlet UIView *contentView;
@end
@implementation PlayerView
- (instancetype) initWithCoder:(NSCoder*)coder
{
self = [super initWithCoder:coder];
[self initialize];
return self;
}
- (instancetype) initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
[self initialize];
return self;
}
- (void)initialize
{
[[NSBundle mainBundle] loadNibNamed:@"PlayerView" owner:self options:nil];
[self addSubview:contentView];
}
@end
在这种情况下,contentView
是.xib
中定义的 整个 视图,其中包含图像和标签。
当我构建演示应用程序(和库)时,该应用程序运行,但是当需要显示此视图时,出现以下错误:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </Users/stevenbarnett/Library/Developer/CoreSimulator/Devices/EC244A5F-CE57-4CCD-9BB4-CDC834D74812/data/Containers/Bundle/Application/446EB609-B663-4BD5-8F8D-F22D03BC0B18/bfsdk_Example.app> (loaded)' with name 'PlayerView''
手动检查.app
文件,可以发现PlayerView.nib
文件埋在Frameworks/bfsdk.framework
目录中,但是我猜是因为它不在根目录,所以没有位于:
我已经验证:
PlayerView
PlayerView.xib
添加到“复制包资源”构建阶段在运行仅包含我的库作为应用程序的应用时,如何从库中的库中类加载{strong>库中的.xib
文件.framework
?
我相信,如果我手动指定文件路径,例如:
NSString* resourcePath = [[NSBundle mainBundle] pathForResource:@"bfsdk" ofType:@"framework"];
[[NSBundle mainBundle] loadNibNamed:[resourcePath stringByAppendingPathComponent:@"PlayerView"]];
但是,我不喜欢这样,这使我很难将框架的名称编码到我的一个类中。如果我在一年内更改名称,我不希望一切都因为这条没人记得的代码而存在。
答案 0 :(得分:1)
使用就足够了
[NSBundle bundleForClass:[self class]]
代替
[NSBundle mainBundle]
因此,基本上[NSBundle mainBundle]返回当前模块(您的应用程序)的捆绑包,而不是实际的框架
在这里您可以找到更多详细信息 [NSBundle bundleForClass:[self class]]] what does that mean?