Objectif C - Comment puis-je utiliser initWithCoder méthode?

J'ai la méthode suivante pour ma classe qui a l'intention de charger un fichier nib et l'instanciation de l'objet:

- (id)initWithCoder:(NSCoder*)aDecoder 
{
    if(self = [super initWithCoder:aDecoder]) {
        //Do something
    }
    return self;
}

Comment instancier un objet de cette classe?
Qu'est-ce que ce NSCoder? Comment puis-je créer?

    MyClass *class = [[MyClass alloc] initWithCoder:aCoder];
InformationsquelleAutor aryaxt | 2010-10-15