我使用此代码在 UIPickerView 中归档行:

self.component1Data = [NSArray arrayWithObjects: @"Sample", @"Sample1", @"...", nil];

如何获得 NSString 而不是“样本”?我用 "%@"试过了,但它不起作用:
self.component1Data = [NSArray arrayWithObjects: @"%@",string, @"%@",string2, @"...", nil];

最佳答案

self.component1Data = [NSArray arrayWithObjects: string, string2, nil];

假设 string 和 string2 是 NSString * 类型。

关于iphone - arrayWithObjects : Objects should be NSStrings,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2038908/

10-11 17:09