Me gustaría pasar el dict al proceso del método. Pero una vez que accedo al diccionario, obtengo EXC__BAD_INSTRUCTION.¿Cómo usar el método parametrizado 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];
En el método destinatario:
- (void) processit: (NSDictionary *)name{
NSString *test = [name valueForKey:@"l"]; //EXC_BAD_INSTRUCTION occurs here
NSLog(@"output is %@", test);
}
alguna sugerencia sobre lo que estoy haciendo mal?
Gracias Adrian para actualizar el código. Me ocuparé de formatear también, desde la próxima vez. :) –