Iniziamo. È gratuito!
o registrati con il tuo indirizzo email
iphone da Mind Map: iphone

1. 模型视图控制器

1.1. 模型

1.2. 视图

1.2.1. IB 和 Nib文件

1.2.1.1. awakeFromNib

1.2.2. drawRect

1.2.3. CoreGraphics and Quartz2D(见课件5)

1.2.3.1. UIImage

1.2.3.2. UIImageView

1.2.3.3. 动画

1.2.3.3.1. 基本

1.2.3.3.2. 其他选项

1.2.3.3.3. 例子

1.2.3.3.4. 注意及其他

1.2.4. 屏幕中的矩形区域

1.2.4.1. CGPoint,CGSize,CGRect

1.2.4.2. 坐标是从左上角开始

1.2.4.3. Frame

1.2.4.4. bound

1.2.5. 处理事件

1.2.6. 是UIResponder的子类

1.2.7. UIWindow

1.2.8. 常用方法

1.2.9. 内存管理

1.3. 控制器

1.3.1. 控制和行为

2. 程序生命周期

2.1. UIKit Framework

2.1.1. UIApplication

2.1.2. UIApplicationDelegate

2.1.3. info.plist

3. 内存管理

3.1. dealloc不能手工调用除非super dealloc

3.2. retain,copy,assign区别

3.3. synthesize

3.3.1. 可以被重写读或写方法

3.3.2. 可以制定对应的隐藏变量

3.3.3. 点和self

3.3.4. 可以定制什么类型的属性

4. Foundation

4.1. Value and Collection Classes

4.1.1. NSObject

4.1.1.1. description

4.1.1.2. isEqual与==区别

4.1.1.3. sel

4.1.2. NSString

4.1.2.1. 基本

4.1.2.2. 创建

4.1.2.3. 常用方法

4.1.3. NSMutableString

4.1.3.1. 是NSString的subclass

4.1.3.2. 常用方法

4.1.4. Collections集合

4.1.4.1. Array

4.1.4.1.1. Common NSArray methods

4.1.4.1.2. NSNotFound returned for index if not found

4.1.4.2. NSMutableArray

4.1.4.2.1. 常用方法

4.1.4.3. Dictionary

4.1.4.3.1. Common NSDictionary methods

4.1.4.3.2. nil返回如果没有找到,与array的区别

4.1.4.4. NSMutableDictionary

4.1.4.4.1. 是NSDictionary的子类subclass

4.1.4.4.2. 常用方法

4.1.4.5. Set

4.1.4.5.1. Common NSSet methods

4.1.4.6. NSMutableSet

4.1.4.6.1. Common NSMutableSet methods

4.1.5. Enumeration枚举

4.1.5.1. 常用方法

4.1.6. NSNumber

4.1.6.1. Common NSNumber methods

4.1.7. NSData / NSMutableData

4.1.8. NSDate / NSCalendarDate

4.2. User Defaults

4.3. Archiving存档

4.4. Notifications通知

4.5. Undo Manager撤销管理

4.6. Tasks,times,threads

4.7. File System,pipes,I/O bundles

5. 用户类Custom Class

6. 000