2009-06-23 5 views
7

Mi piacerebbe passare il dettt al metodo processit. Ma una volta che accedo al dizionario, ottengo EXC__BAD_INSTRUCTION.Come utilizzare il metodo parametrizzato con NSNotificationCenter?

NSNotificationCenter *ncObserver = [NSNotificationCenter defaultCenter]; 
[ncObserver addObserver:self selector:@selector(processit:) name:@"atest" 
       object:nil]; 

NSDictionary *dict = [[NSDictionary alloc] 
          initWithObjectsAndKeys:@"testing", @"first", nil]; 
NSString *test = [dict valueForKey:@"first"]; 
NSNotificationCenter *ncSubject = [NSNotificationCenter defaultCenter]; 
[ncSubject postNotificationName:@"atest" object:self userInfo:dict]; 

Nel metodo destinatario:

- (void) processit: (NSDictionary *)name{ 
    NSString *test = [name valueForKey:@"l"]; //EXC_BAD_INSTRUCTION occurs here 
    NSLog(@"output is %@", test); 
} 

Qualche suggerimento su quello che sto facendo di sbagliato?

risposta

17

riceverai un oggetto NSNotification, non un NSDictionary nel callback di notifica.

Prova questo:

- (void) processit: (NSNotification *)note { 
    NSString *test = [[note userInfo] valueForKey:@"l"]; 
    NSLog(@"output is %@", test); 
} 
2

Amrox è assolutamente giusto.

Si può anche utilizzare Object (invece di userInfo) per lo stesso, come di seguito:

- (void) processit: (NSNotification *)note { 

    NSDictionary *dict = (NSDictionary*)note.object; 

    NSString *test = [dict valueForKey:@"l"]; 
    NSLog(@"output is %@", test); 
} 

In questo caso il vostro postNotificationName: oggetto sarà simile:

[[NSNotificationCenter defaultCenter] postNotificationName:@"atest" object:dict]; 
+0

Grazie Adrian per aggiornare il codice. Mi occuperò anche della formattazione, dalla prossima volta. :) –

0

Riceverai una NSNotification oggetto, non un NSDictionary nel callback di notifica.

  • (void) processit: (NSNotification *) note {

    NSDictionary dict = (NSDictionary) note.object;

    NSString * test = [dict valueForKey: @ "l"];

    NSLog (@ "uscita è% @", test); }