如何向NSArray添加多个对象?每个对象都具有相同的值。
实施例
我希望将值“SO”添加到我的数组中10次
答案 0 :(得分:8)
您可以使用一组对象初始化数组:
NSString * blah = @"SO";
NSArray * items = [NSArray arrayWithObjects: blah, blah, nil];
或者您可以使用可变数组并稍后添加对象:
NSMutableArray * mutableItems = [[NSMutableArray new] autorelease];
for (int i = 0; i < 10; i++)
[mutableItems addObject:blah];
答案 1 :(得分:5)
如果您不想使用可变数组并且也不想重复标识符 N 次,请利用{C}样式数组初始化NSArray
:
@interface NSArray (Foo)
+ (NSArray*)arrayByRepeatingObject:(id)obj times:(NSUInteger)t;
@end
@implementation NSArray (Foo)
+ (NSArray*)arrayByRepeatingObject:(id)obj times:(NSUInteger)t {
id arr[t];
for(NSUInteger i=0; i<t; ++i)
arr[i] = obj;
return [NSArray arrayWithObjects:arr count:t];
}
@end
// ...
NSLog(@"%@", [NSArray arrayByRepeatingObject:@"SO" times:10]);
答案 2 :(得分:4)
我的¢2:
NSMutableArray * items = [NSMutableArray new];
while ([items count] < count)
[items addObject: object];
答案 3 :(得分:2)
只需使用initWithObjects:
(或您喜欢的任何方法)添加它们。 NSArray
不要求其对象是唯一的,因此您可以多次添加相同的对象(或相同的对象)。
答案 4 :(得分:2)
现在,您可以使用数组文字语法。
NSArray *items = @[@"SO", @"SO", @"SO", @"SO", @"SO"];
您可以访问items[0];