utilisation de la fonction bind: toObject: withKeyPath: options:
aranaud
Membre
[controllerPoste bind:@"selectedPoste" toObject:controllerOperation withKeyPath:@"selection.poste" options:nil];
La variable passe correctement de la variable : selection.poste vers la variable : selectedPoste mais pas dans le sens inverse.
controllerPoste & controllerOperation sont des classes NSArrayController.
J'ai essayé :
[controllerPoste bind:@"selectedPoste" toObject:controllerOperation withKeyPath:@"selection.poste" options:nil];<br />[controllerOperation bind:@"selection.poste" toObject:controllerPoste withKeyPath:@"selectedPoste" options:nil];<br />
Mais l'application se bloque. :why?:
Connectez-vous ou Inscrivez-vous pour répondre.