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?
Grazie Adrian per aggiornare il codice. Mi occuperò anche della formattazione, dalla prossima volta. :) –