iOS 5 JSON Parsing resulta em Cocoa Error 3840

Estou com dificuldades para analisar a string JSON abaixo no iOS 5.

{"States": [{"Name": "Arizona","Cities": [{"Name": "Phoenix"}]},{"Name": "California","Cities": [{"Name": "Orange County"},{"Name": "Riverside"},{"Name": "San Diego"},{"Name": "San Francisco"}]},{"Name": "Nevada","Cities": [{"Name": "Las Vegas"}]}]}

E aqui está o meu código:

- (void) parseJson {
NSError *jsonError = nil;
NSData *jsonData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Locations-JSON" ofType:@"rtf"]];

if (jsonData) {
    NSDictionary *jsonObjects = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&jsonError];

    if (jsonError) {
        NSLog(@"JSON Error: %@", [jsonError localizedDescription]);

        return;
    }

    NSLog(@"%@", jsonObjects);
}
}

Eu continuo recebendo esse erro:

JSON Error: The operation couldn’t be completed. (Cocoa error 3840.)

Eu apreciaria alguma ajuda sobre isso porque eu claramente e incapaz de consertar isso.

questionAnswers(4)

yourAnswerToTheQuestion