ios值得深入研究的几个方向

1.iOS log系统,目前公认的比较好的log日志系统是cocoalumberjack,大家可以去研究一下里面的代码原理
https://github.com/CocoaLumberjack/CocoaLumberjack
2.原生app与h5页面通信方式
这里典型的是Phonegap,cordova,这篇文章可以作为大家的敲门砖
http://sjpsega.com/blog/2014/03/08/js-communicate-with-native-in-iOS/
cocoachina上有两篇不错的文章也可以看看
http://www.cocoachina.com/industry/20140623/8919.html
http://www.cocoachina.com/industry/20130520/6238.html
3.iOS 的图片缓存系统
两个比较典型的开源工具 SDWebImage, FastCacheImage,具体github有源码,感兴趣的可以下载下来看看
4.runtime glow团队的两篇文章非常不错,可以入门了:
http://tech.glowing.com/cn/objective-c-runtime/
http://tech.glowing.com/cn/method-swizzling-aop/
http://chun.tips/blog/2014/11/08/bao-gen-wen-di-objective%5Bnil%5Dc-runtime(4)%5Bnil%5D-cheng-yuan-bian-liang-yu-shu-xing/
http://chun.tips/blog/2014/11/06/bao-gen-wen-di-objective%5Bnil%5Dc-runtime(3)%5Bnil%5D-xiao-xi-he-category/
有兴趣的可以深入进去,结合具体业务看看,目前iPad的埋点其实已经用到了相关技术
5.reacitvecocoa github有源码
6.Webview离线缓存
webview图片资源缓存这个也是值得研究的方向,也是目前京东项目中迫切需要的具体一些可参看如下开源工具:RNCachingURLProtocol
https://github.com/rnapier/RNCachingURLProtocol
7.iOS crash log分析,lldb调试技巧方法
http://www.cocoachina.com/ios/20150126/11021.html
8.开源网络框架AFNetWorking研究,网络框架研究,同类网络对比,cookie,缓存对比
9.开源数据库框架FMDB研究,代码剖析,多线程处理技巧
10.cocoapods使用技巧
11.protocolbuffer研究
12.lua 脚本热补丁;
11.protocolbuffer研究
12.json解析相关
两个开源工具 Mantle, JSonModel https://github.com/Mantle/Mantle
https://github.com/icanzilb/JSONModel

你可能感兴趣的:(ios值得深入研究的几个方向)