使うときにはいつも忘れているのでメモ。
keyとvalueが欲しいとき
for (id key in dictionary){ NSLog(@"%@,%@", key, dictionary[key]); }
valueが欲しいとき
for (id value in [dictionary objectEnumerator]) { NSLog(@"%@", value); }
使うときにはいつも忘れているのでメモ。
keyとvalueが欲しいとき
for (id key in dictionary){ NSLog(@"%@,%@", key, dictionary[key]); }
valueが欲しいとき
for (id value in [dictionary objectEnumerator]) { NSLog(@"%@", value); }
2049, inc.
web業界で生活しています。
お仕事の割合はディレクション:8、開発:2くらい。