&tag();
*目次 [#x398e510]
#contents

*基本情報 [#yee6408b]
-NSMutableArrayは変更可能な配列。

*生成 [#b66f8993]
 NSMutableArray *values = [[NSMutableArray alloc] init];

*要素の追加 [#h7d8cb43]
**オブジェクトの追加 [#jf4608b6]
#pre{{
[values addObject:@"abc"];
}}
**プリミティブ型の追加 [#v12ddad8]
intなどは直接追加できない
#pre{{
[values addObject:[NSNumber numberWithInt:123]];
}}


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS