1
我是iOS開發新手。需要幫助使用NSJSONSerialization解析這些數據。數據來自post方法。 數據是這樣 [ { 「edition_id」: 「1」, 「錯誤」:假, 「LONG_NAME」: 「拉傑科德」, 「消息」: 「RESULT_OK」, 「SHORT_NAME」:「RJT 「 } ]我的文件使用NSJsonSerialization在iOS7中使用JSON解析提取數據
和代碼就像使用通過後JSON解析這個
NSURL *theURL = [NSURL URLWithString:@"MYURL"];
NSMutableURLRequest *theRequest = [[NSMutableURLRequest alloc] init];
[theRequest setURL:theURL];
[theRequest setHTTPMethod:@"POST"];
NSData *allCoursesData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:theRequest]];
NSError *error;
NSMutableDictionary *allCourses = [NSJSONSerialization JSONObjectWithData:allCoursesData options:kNilOptions error:&error];