iOS开发主要参考文档(转载)

Objective-C,
语言的系统详细资料。这是做iOS开发的前题与基础。https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html#//apple_ref/doc/uid/TP30001163

UIView,iOS UI视图开发基础,里面含盖了UIView与图形渲染的基本概念。iOS开发必备,必看文档。
https://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009503-CH1-SW2

Quartz2D 图形渲染,
这里是介绍iOS自带的2D图形API。
https://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/Introduction/Introduction.html#//apple_ref/doc/uid/TP30001066

Core animation, 
基于CoreGraphics的2D动画引擎,提供简单的API,可以实现较为复杂2D动画。
https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/CoreAnimation_guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40004514

参考文档:

iOS开发的UI设计参考文档,
非技术性的。由于iOS开发的平台特殊性,有必要了解它的UI设计风格和理念,做学习与参考之用。
https://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/MobileHIG/Introduction/Introduction.html

如果在开发中遇到更多的领域,就到这里查:
https://developer.apple.com/library/ios/navigation/index.html

原文地址:https://www.cnblogs.com/alihaiseyao/p/3380996.html