Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなパラメーターを使用して一連の int を返すライブラリを使用しています。
int ** outList
それを取得して、一連の NSNumber オブジェクト (およびおそらくそれらを保持する NSArray) にラップする最良の方法は何ですか?
私が知っている近道はありません。次のように書くことができます。
int **outList = ... int count = ... NSMutableArray *result = [[NSMutableArray alloc] initWithCapacity:count]; for (int idx = 0; idx < count; idx++) [result addObject:@(outList[idx])];
それが役に立てば幸い!