我想使用 JSON 文件中的在线数据。它目前正在工作,但是当我使用特殊字符时,它显示“null”。这是我正在使用的代码:
NSString *urlString = [NSString stringWithFormat:@"http://belesios.com/burc/koc2.php"];
NSURL *url = [NSURL URLWithString:urlString];
NSData *data = [NSData dataWithContentsOfURL:url];
NSError *error;
NSMutableDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@"%@", json);
NSString *ciktiText = [[NSString alloc] initWithFormat:@"%@", json];
[kocLabel setText:ciktiText];
例如,如果我的文件包含 ç 或 ü,则返回 null。我需要做什么?