可変配列を初期化する - iOS開発メモ

サンプル

配列をmutableCopyするのがお手軽です。

NSMutableArray *items = [@[@"one", @"two", @"three"] mutableCopy];

関連項目