0
我有A類:調用函數與NSNotificationCenter
-(void)threewaysbuttonshow:(NSNotification *)notification {
NSLog(@" Do something ");
}
,並在我的B級我想打電話給我的功能是threewaysbuttonsho類A.
我想用NSNotificationCenter。這裏是我在B類中的代碼,但是在代碼運行時它不會調用我的函數,任何幫助都可以欣賞。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(threewaysbuttonshow:) name:@"something" object:nil];