0

我正在使用一个库,该库使用如下参数返回一系列整数:

int ** outList

将它包装在一堆 NSNumber 对象中的最佳方法是什么(也许还有一个 NSArray 来保存它们)?

4

1 回答 1

0

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!

于 2013-08-04T18:01:48.737 回答