Conversão de JSON em um objeto Objective-C (Xcode para iOS)
// Retrieve local JSON file called example.jsonNSString *filePath = [[NSBundle mainBundle] pathForResource:@”example” ofType:@”json”]; // Load the file into an NSData object called JSONData NSError *error = nil;NSData *JSONData = [NSData …
Continuar lendo