本文主要是介绍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";
strings[2] = @"Third";
NSArray *stringsArray = [NSArray arrayWithObjects:strings count:2];
// strings array contains { @"First", @"Second" }
这篇关于iOS: NSArray的方法arrayWithObjects:count:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!