我的代码如下:
NSString *str1 = @"Name";
NSString *str2 = @"Age";
NSArray *array = [[NSArray alloc] initWithObjects: str1, str2 count:2];
但是,当我 Build & Run 时,我抛出一个异常,上面写着: Expected ':' right before the 'c' in count
.
为什么是这样?我试过输入 ':' 虽然我知道这在语法上不正确,然后 Xcode 要求我在之前用 ']' 结束count
。