摘要:
通常打包采用xcodebuild和xcrun两个命令,xcodebuild负责编译,xcrun负责将app打成ipa。常见步骤如下:1、清理工程/usr/bin/xcodebuild -target targetName clean2、编译工程/usr/bin/xcodebuild -target targetName3、打包/usr/bin/xcrun -sdk iphoneos PackageApplication -v path/To/xxx.app -o xxx.ipa如果是含签名的包,上面两个命令需要增加一些参数。xcodebuild -target targetName CODE_ 阅读全文