直接上结论
(结论针对本公司的工程而言,项目不同数据会有所不同):
- OC 和swift 混编会让iPA 的包增大20M,即使你只有几个swift 文件,每一个swift文件代码都不多都可能增加20M
- bitcode 会让ipa 包增加1.5M左右
- cocoapod 的设置Objc打开会增加ipa的大小,几M左右,而且这个Objc 是最好要打开的
- 文中还使用了RAC ,RAC对ipa的大小影响还没测试,有知道的欢迎给我留言
1) oc和swift 混编,bitcode 勾选上,ipa 文件大小49.8M
49.8M有点大 ,30M的时候老板就想更小点,50M老板估计不好接受
2) oc和swift 混编,bitcode 未选上,ipa 文件大小48.4M,比上面减少了1.4M
3) 删除项目中的swift 文件,改为纯OC,ipa为29.7M,减少20M啊
4) cocoapod中设置Objc 会让ipa 增大
cocoapod这么好用的工具,增大ipa 还是得用的.cocoapod 会让ipa 增大的,我没测试,详情见这位老外的问答.
问题:CocoasPod很好,但是-ObjC 在项目中会让所有的对象文件编译到二进制文件中,一个空的工程使用pod AFNetworking和"ObjC"打开,ipa的大小是7M.google map 需要ObjC 打开,这样导致ipa 17M ,所以这个老外想知道, Google Map SDK 的ObjC 打开,AFNetworking 的ObjC 关闭去减少ipa 的大小?
答案:别人的答案没说怎么办,只是说cocoapod 这么做是为了程序更好的编译.
CocoasPod is good, But sometimes it's not.Why? Because there is a flag call "-ObjC" in your project.It will pull ALL OBJECT FILES into your resulting binary.
For example, an empty project with "pod 'AFNetworking'" and the flag "-ObjC" is on, that will cause the binary will be 7MB. 7MB for an empty project, that's suck.
Some frameworks like Google Map SDK need the flag "-ObjC" is on.So, if your project with "AFNetworking pod" and "Google Map SDK", it will cause the binary will be 17MB.
So my question is:How can I turn off the "-ObjC" flag for special Library?For example, just keep the "-ObjC" for Google Map SDK, but turn it off on AFNetworking.
In general, adding a static library to your project in Objective-C will pull ALL OBJECT FILES into your resulting binary because cocoa pods installation adds -ObjC flag to your linker settings, and as stated in linker manual:
-ObjC Loads all members of static archive libraries that implement an Objective-C class or category.
This flag included to solve problem with linking categories, because by default linker will not include object files containing only categories into resulting binary.
文中的打包出的ipa大小都包含了RAC 和cocoapad.RAC对ipa的大小影响还没测试,估计在7M以内,
- 最后的结论见文章开头,有不同的意见欢迎留言
- 作者开发经验总结的文章推荐,持续更新学习心得笔记
Runtime 10种用法(没有比这更全的了
成为iOS顶尖高手,你必须来这里(这里有最好的开源项目和文章)
iOS逆向Reveal查看任意app 的界面
JSPatch (实时修复App Store bug)学习(一)
iOS 高级工程师是怎么进阶的(补充版20+点)
扩大按钮(UIButton)点击范围(随意方向扩展哦)
最简单的免证书真机调试(原创)
通过分析微信app,学学如何使用@2x,@3x图片
TableView之MVVM与MVC之对比
使用MVVM减少控制器代码实战(减少56%)
ReactiveCocoa添加cocoapods 配置图文教程及坑总结