ios NSDictionary 스트리밍 방법

423 단어
알려진 키의 경우 다음 코드로value를 찾을 수 있습니다.
NSNumber *code = [response objectForKey:@"code"];

NSDictionary 를 누비려면 다음 코드를 사용하십시오.
        NSDictionary *dict = [datas objectAtIndex:0];
        NSArray *keys = [dict allKeys];//   key
        for(int i=0;i<[keys count];i++){
            NSString *key = [keys objectAtIndex:i];
            [dict objectForKey:key];
        }

좋은 웹페이지 즐겨찾기