可以到以下网址查看具体的制作过程:http://blog.csdn.net/pjk1129/article/details/7255163
我这里总结如下:
1、首先生成模拟器下地.a静态库,通过命令lipo -info libTest.a 可知其Architectures in the fat file: libTest.a are: i386 x86_64 ;
2、再生成device(真机)环境下地.a静态库,通过命令lipo -info libTest.a可知其Architectures in the fat file: libTest.a are: armv7 arm64;
3、通过命令lipo -create ./simular/libTest.a ./releaseos/libTest.a -output ./libTest.a 可以生成在模拟器和真机环境下均可使用的静态库;