arraywithobjects专题

iOS: NSArray的方法arrayWithObjects:count:

+ (id)arrayWithObjects:(const id[])objects count:(NSUInteger)count (const id[])objects参数是C类型数组的对象。 NSString *strings[3]; strings[0] = @"First"; strings[1] = @"Second"; st