Xcode8制作.a静态库和存放xib和图片的.bundle (2)

接上篇文章,继续创建.bundle文件
1、首先在MyLbrary中添加bundle,名称为:LibraryResources

Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第1张图片
添加bundle

2、因为bundle默认是OS系统的,所有需要修改他的信息。如图,修改成iOS系统
Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第2张图片
修改成iOS系统

3、设置Build Setting中的COMBINE_HIDPI_IMAGES 为NO,否则bundle中的图片就是tiff格式了
Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第3张图片
设置图片加载

4、创建一个测试类:MyViewController ,创建的时候记得带上xib,创建完毕后,把MyViewController.xib拖到LibraryResources项目下,结果如下图
Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第4张图片
创建完成

5、再向里面添加随便一个图片,在Xib上创建一个button,设置他的image为这个图片,如下如

Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第5张图片
设置xib

6、然后修改MyLibrary类,如下

#import 
#import "MyViewController.h"

@interface MyLibrary : NSObject

+ (void)logMyLibrary;
+ (MyViewController *)creatMyViewController;
@end
#import "MyLibrary.h"
@implementation MyLibrary
+ (void)logMyLibrary {
    NSLog(@"输出我的Library啦");
}
+ (MyViewController *)creatMyViewController {
    NSString * rescourcePath = [[NSBundle mainBundle] pathForResource:@"LibraryResources" ofType:@"bundle"];
    NSBundle * bundle =[NSBundle bundleWithPath:rescourcePath];
    MyViewController * myVC =[[MyViewController alloc]initWithNibName:@"MyViewController" bundle:bundle];
    return myVC;
}
@end

并把MyViewController.h文件也暴露出来,不然会报错的

Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第6张图片
暴露MyViewController

7、接下来分别运行这两个target,然后按照 上篇文章一样生成MyLibrary文件

Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第7张图片
生成库.png
Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第8张图片
生成MyLibrary.png

8、把MyLibrary 文件拖入测试项目就可以测试啦。


Xcode8制作.a静态库和存放xib和图片的.bundle (2)_第9张图片
测试结果

至此.a静态库和.bundle文件都创建完毕啦

你可能感兴趣的:(Xcode8制作.a静态库和存放xib和图片的.bundle (2))