NSArray
目录
NSArray
是一个Cocoa类,用来存储对象的有序列表
arrayWithObjects用来创建新的NSArray
initWithObjects 初始化数组并赋值
objectAtIndex获取指定索引处的对象
componentsSeparatedByString切分NSArray
componentsJoinedByString合并NSArray
NSMutableArray可变数组
arrayWithCapacity创建可变数组
addObject在数组末尾添加对象
removeObjectAtIndex删除特定索引处的对象