Que formato o NSKeyedArchiver salva?

Quando eu uso o NSKeyedArchiver, os dados são gravados em * .plist, vi alguns exemplos em que as pessoas têm o arquivo de saída como * .txt ou mesmo sem uma extensão?

-(void)saveCore {
    NSMutableData *data = [[NSMutableData alloc] init];
    NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
    [archiver encodeObject:reactorCore forKey:@"CORE"];
    [archiver finishEncoding];
    [data writeToFile:[self dataFilePath] atomically:YES];

    [data release];
    [archiver release];
}

Gary

questionAnswers(1)

yourAnswerToTheQuestion