Programming/iOS - ObjC
NSDictionary - key에 해당되는 value가져오는것
Tez.Park
2010. 11. 29. 11:00
// NSDictionary에서 해당 index 에 존재하는 Key 를 가져온다. 그럼 그 key 에 해당하는 value 를 가져오려면
NSDictionary *dict = {...};
NSString *strValue = [dict objectForKey:"key"];
반응형