&tag(Objective-C);
*目次 [#k252707d]
#contents

*基本 [#o95a0fd9]
-変更不可能な配列

*生成 [#jf977f2c]
**複数の要素から作る [#c2862365]
initWithObjectsを使う。最後のnilを忘れないこと。
 NSArray *names = [[NSArray alloc] initWithObjects:@"abc", @"def", nil];

*ループ [#mf3691cd]
**単純なループ [#k8bdd7a8]
#pre{{
NSArray *names = [[NSArray alloc] initWithObjects:@"abc", @"def", nil];
for (int i  =  0; i < names.count; i++) {
    NSLog(@"%@", [names objectAtIndex:i]);
}
}}


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS