iOS常用总结

iOS开发之Object-C和Cocoa

http://www.cocoachina.com/applenews/devnews/2013/0318/5838.html

NSExpression

http://www.cocoachina.com/applenews/devnews/2014/0310/7941.html

Objective-C相关Category的收集

http://www.cocoachina.com/applenews/devnews/2014/0212/7808.html

KVC KVO

http://blog.jobbole.com/69731/

 

Swift

https://github.com/HunkSmile/Swift

https://github.com/JakeLin/SwiftWeather

 

block 学习

http://blog.sina.com.cn/s/blog_7b9d64af0101c4sh.html

 

IOS 自定义UINavigationBar的属性

http://blog.sina.com.cn/s/blog_9bf8abf301018kwm.html

 

技术文章

http://www.cocoachina.com/bbs/read.php?tid=170581

 

关于object-c的基本数据类型(基本知识,很重要)

http://blog.csdn.net/sinodroid/article/details/7208092

 

http与https的区别

http://www.cnblogs.com/wxlzhizu/archive/2009/12/09/1620005.html

http://hi.baidu.com/kxeogumgcabjmod/item/739d82d8f237fff793a974b6

 

自动释放池详解

http://blog.csdn.net/hherima/article/details/16355887

 

内存管理详解

http://www.cocoachina.com/applenews/devnews/2013/1126/7418.html

 

判断当前屏幕方向

http://www.cnblogs.com/chenjohney/archive/2013/07/26/3216452.html

 

设置APP启动方向

http://www.cnblogs.com/mixiyou/archive/2012/08/06/2625273.html

 

得到屏幕方向的有几种方法:

viewController 的方向, self.interfaceOrientation

设备方向:[[UIDevicecurrentDevice]orientation];

当前程序方向: [[UIApplication sharedApplication] statusBarOrientation];

 

IOS应用检查更新最好的办法(通过apple服务器来分析)

http://blog.csdn.net/wave_1102/article/details/7463697

 

IOS 唯一识别码的分析

http://www.cocoachina.com/bbs/read.php?tid=144524

 

APP icon 尺寸要求

https://developer.apple.com/library/ios/qa/qa1686/_index.html

 

IOS内购以及测试

http://www.cocoachina.com/applenews/devnews/2013/1119/7375.html]

 

ARC与非ARC的转换

【解决方案】

Xcode 项目中我们可以使用 ARC 和非 ARC 的混合模式。

如果你的项目使用的非 ARC 模式,则为 ARC 模式的代码文件加入 -fobjc-arc 标签。

如果你的项目使用的是 ARC 模式,则为非 ARC 模式的代码文件加入 -fno-objc-arc 标签。

添加标签的方法:

  1. 打开:你的target -> Build Phases -> Compile Sources.
  2. 双击对应的 *.m 文件
  3. 在弹出窗口中输入上面提到的标签 -fobjc-arc / -fno-objc-arc
  4. 点击 done 保存

 

IOS项目Icon和default图片命名规则

http://www.cnblogs.com/rothwell/archive/2012/05/18/2507570.html

 

IOS公司账号申请

http://www.tuicool.com/articles/2673my7

http://blog.csdn.net/chchong1234/article/details/19409761

 

IOS开发者企业计划

http://www.cocoachina.com/special/in_house_and_education.html

 

企业级IDP的申请及IN House 发布流程(经典)

http://blog.csdn.net/kmyhy/article/details/6418280

 

IOS7 APP 资料集合

http://www.cocoachina.com/newbie/basic/2013/0822/6851.html

http://www.cocoachina.com/gamedev/misc/2013/1017/7191.html

http://www.cocoachina.com/applenews/devnews/2013/1021/7205.html

原文地址:https://www.cnblogs.com/kevingod/p/3591446.html