iOS/Swift + Objective-c

[Objective-c] NSDictionary 에서 Integer 조회

안경 쓴 귀니 2021. 10. 7. 18:49
반응형

NSDictionary에서 Integer 조회하는 방법

int status = [dic[@"status"] integerValue];

또는

int status = [[dic valueForKey:@"status"] integerValue];
반응형