Ricerca…


Sintassi

  • (id) JSONObjectWithData: (NSData *) opzioni dati: (NSJSONReadingOptions) errore di opt: errore (NSError * _Nullable *)

Parametri

Operatore Descrizione
dati Un oggetto dati contenente dati JSON
optare Opzioni per leggere i dati JSON e creare gli oggetti Foundation.
errore Se si verifica un errore, al ritorno contiene un oggetto NSError che descrive il problema.

Osservazioni

NSJSONSerialization è disponibile in iOS 5.0 e versioni successive Un oggetto che può essere convertito in JSON deve avere le seguenti proprietà:

  • L'oggetto di livello superiore è un NSArray o NSDictionary.

  • Tutti gli oggetti sono istanze di NSString, NSNumber, NSArray, NSDictionary o NSNull.

  • Tutte le chiavi del dizionario sono istanze di NSString.

  • I numeri non sono NaN o infinito.

Analisi JSON usando NSJSONSerialization Objective c

NSError *e = nil;
NSString *jsonString = @"[{\"id\": \"1\", \"name\":\"sam\"}]";
NSData *data = [jsonString dataUsingEncoding:NSUTF8StringEncoding];

NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData: data options:  NSJSONReadingMutableContainers error: &e];

if (!jsonArray) {
    NSLog(@"Error parsing JSON: %@", e);
} else {
    for(NSDictionary *item in jsonArray) {
        NSLog(@"Item: %@", item);
    }
}

Produzione:

Item: {
    id = 1;
    name = sam;
}

Esempio 2: utilizzo del contenuto dell'URL:

//Parsing:

NSData *data = [NSData dataWithContentsOfURL:@“URL HERE”];
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@“json :%@”,json);

Risposta campione:

json: {
    MESSAGE = “Test Message";
    RESPONSE =(
                {
            email = "[email protected]";
            id = 15;
            phone = 1234567890;
            name = Staffy;
        }
    );
    STATUS = SUCCESS;
}


 NSMutableDictionary *response = [[[json valueForKey:@"RESPONSE"] objectAtIndex:0]mutableCopy];
 NSString *nameStr = [response valueForKey:@"name"];
 NSString *emailIdStr = [response valueForKey:@"email"];


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow