制作.a静态库项目构建

IOS .a+.bundle+项目放在同一个工程
新建项目,在项目TARGETS中+一个静态库类型项目,编辑静态库项目,运行静态库项目,在原项目中TARGETS-General-Linked Frameworks and Libraries添加.a库,在需要地方引用头文件,使用即可。若.a中有xib,需要把xib放到.bundle中,在原项目TARGETS中+一个.bundle类型的项目,把xib复制到.bundle的TARGETS中,修改.bundle中的base sdk,改为ios,运行.bundle生成.bundle然后原项目edit scheme-build-add this bundle。在原项目中选中build phases-+new run script phase 把cp -R -f $BUILT_PRODUCTS_DIR/MyBundleName.bundle $BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/
放到脚本中,如果有多个bundle,则:
cp -R -f $BUILT_PRODUCTS_DIR/*.bundle $BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/
在使用的时候需要指定bundle:
[UIImage imageNamed:@"yourbundlefile.bundle/imageInBundle"];

在原项目中生成UIViewController+XIB时:
NSString *bundlePath=[[NSBundle mainBundle]pathForResource:@"YSTSDKBD" ofType:@"bundle"];
NSBundle *myBundle=[NSBundle bundleWithPath:bundlePath];
TestViewController *testVC=[[TestViewController alloc]initWithNibName:@"TestViewController" bundle:myBundle];


兼容处理器说明:
目前为止Apple移动设备默认指令集(2014.8.22)

-------------------------------------------------------------------------------------

armv6 设备: iPhone, iPhone2, iPhone3G, 第一代、第二代 iPod Touch

armv7 设备: iPhone3GS, iPhone4, iPhone4S

iPad, iPad2, iPad3(The New iPad), iPad mini

iPod Touch 3G, iPod Touch4

armv7s设备: iPhone5, iPhone5C, iPad4(iPad with Retina Display)

arm64 设备: iPhone5S, iPad Air, iPad mini2(iPad mini with Retina Display)

-------------------------------------------------------------------------------------

XCode中与指令集相关的选项(Build Settings 面板下 Architectures):

 

Architectures:

指明选定Target要求被编译生成的二进制包所支持的指令集支持指令集是通过编译生成对应的二进制数据包实现的,如果支持的指令集数目有多个,就会编译出包含多个指令集代码的数据包,从而会造成最终编译生成的包很大。

 

Valid Architectures:

指明可能支持的指令集并非Architectures列表中指明的指令集都会被支持,Valid Architectures限制可能被支持的指令集的范围,即Valid Architectures和Architectures列表的交集,才是XCode最终生成二进制包所支持的指令集。

 

比如,将Architectures支持arm指令集设置为:armv7,armv7s,对应的Valid Architectures的支持的指令集设置为:armv7s,arm64,那么此时,XCode生成二进制包所支持的指令集只有armv7s 。

 

Build Active Architecture Only:

指明是否只编译当前连接设备所支持的指令集

该选项起作用的条件有两个,必须同时满足才会起作用:

1. 其值设置为YES

2. XCode成功连接调试设备

假定我们将Build Active Architecture Only值设置为YES,同时XCode连接上手机iPhone5S(匹配指令集arm64)

 

1. 第一种情况

Architectures: armv7, armv7s, arm64

ValidArchitectures: armv6, armv7s, arm64

生成二进制包支持的指令集: arm64

 

2. 第二种情况

Architectures: armv6, armv7, armv7s

Valid Architectures: armv6, armv7s, arm64

生成二进制包支持的指令集: armv7s

 

3. 第三种情况

Architectures: armv6, armv7

Valid Architectures: armv6, armv7s, arm64

生成二进制包支持的指令集: armv7

 

4. 第四种情况

Architectures: armv6

Valid Architectures: armv6, armv7s, arm64

生成二进制包支持的指令集: 虽然编译成功了,但是并没有任何目标生成, 因为从XCode4.5开始,就不再支持armv6指令集,所以列表中写了也是白写。

 

5. 第五种情况

Architectures: armv7, armv7s, arm64

Valid Architectures: armv7,armv7s

生成二进制包支持的指令集: 编译出错信息

No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=arm64, VALID_ARCHS=armv7 armv7s)
可以看出:当Build Active Architecture Only起作用时:

连接的手机指令集匹配是由高到低(arm64 > armv7s > armv7)依次匹配的。

 

如连接手机为iPhone5S,其默认指令集为arm64,若Architectures列表为armv7, armv7s,则会选取armv7s指令集为目标指令集,如果此时Valid Architectures列表中包含该指令集,则成功生成的二进制包只支持armv7s指令集,若alid Architectures列表不包含此指令集,则编译将会出错:

No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=armv7s, VALID_ARCHS=armv7 arm64)

同样的,若Architectures列表为armv7,则会选取armv7作为目标指令集,若Valid Architectures列表中包含了armv7指令集,则能够成功生成二进制包,其支持的指令集只有armv7,若Valid Architectures列表中不包含armv7,则编译失败。

建议:通常Debug模式设置值为Yes,Release模式设置为No

 

兼容真机以及模拟器说明:
1、查看支持构架的命令是lipo -info xxxxx.a
2、合并真机和模拟器的库的命令是 lipo -create xxxx_iphoneos.a xxxx_simulator.a -output xxxx.a

posted @ 2016-03-13 14:30  Jk_Chan  阅读(233)  评论(0编辑  收藏  举报