我正在使用一个库,该库使用如下参数返回一系列整数:
int ** outList
将它包装在一堆 NSNumber 对象中的最佳方法是什么(也许还有一个 NSArray 来保存它们)?
There is no shortcut, that I know of. You can write something like this:
int **outList = ...
int count = ...
NSMutableArray *result = [[NSMutableArray alloc] initWithCapacity:count];
for (int idx = 0; idx < count; idx++)
[result addObject:@(outList[idx])];
Hope it helps!