私はメソッドprocessitにdictを渡したいと思います。しかし、辞書にアクセスすると、EXC__BAD_INSTRUCTIONを取得します。受信者の方法では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];
:私が間違ってやっているの
- (void) processit: (NSDictionary *)name{
NSString *test = [name valueForKey:@"l"]; //EXC_BAD_INSTRUCTION occurs here
NSLog(@"output is %@", test);
}
任意の提案ですか?
ありがとうございます。私は次回からも書式を守ります。 :) –