标签:.a .framework ios 64位 判断
打开终端,cd到静态库的地方。输入命令
.framework文件
lipo -info ./****.framework/****
返回结果
Architectures in the fat file: ./****.framework/**** are: i386 armv7 armv7s
如此便可查看你工程中的静态库是否支持64位。
.a文件
lipo -info libUPPayPlugin.a
结果
Architectures in the fat file: libUPPayPlugin.a are: armv7 armv7s arm64 i386 x86_64
标签:.a .framework ios 64位 判断
原文地址:http://blog.csdn.net/xiao562994291/article/details/44754481