我是新來的iOS讀取本地JSON文件,請幫助我,我怎麼能使用的Objective-C如何使用Objective-C的
SBJSON *parser = [[SBJSON alloc] init];
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"auth_request" ofType:@"json"];
NSError *error = nil;
NSData *JSONData = [NSData dataWithContentsOfFile:filePath options:NSDataReadingMappedIfSafe error:&error];
NSString *json_string = [[NSString alloc] initWithData:JSONData encoding:NSUTF8StringEncoding];
NSArray *statuses = [parser objectWithString:json_string error:nil];
for (NSDictionary *status in statuses) {
NSLog(@"%@ - %@", [status objectForKey:@"loginId"], [status objectForKey:@"secret"]);
}
首先要學習,也不要緊,你正在使用'xcode'你可以用文本編輯器來這樣做的,它仍然是相同的。 – Popeye
'NSArray * statuses = [NSJSONSerialization JSONObjectFromData:JSONData options:0 error:&error];'(其中'error'是通常的NSError對象)。 –