-1
我打電話通知另一類如何從另一個類
//這是ClassA的
- (void)onDidFinishLaunchingNotification:(NSNotification*)notification
{
NSLOG(@"onDidFinishLaunchingNotification");
}
從另一個類 //這是B級呼叫通知呼叫通知
[[NSNotificationCenter defaultCenter]addObserver:nil selector:@selector(onDidFinishLaunchingNotification:) name:nil object:nil];
當我打電話時[[NSNotificationCenter defaultCenter] postNotificationName:YourOnDidFinishLaunchingNotificationName object:nil];我的應用程序崩潰了! – kiran 2013-02-24 00:47:18
@kiran確保'selector'與消息名稱相同:'onDidFinishLaunchingNotification:',不要忘記COLON。 – Kjuly 2013-02-24 02:39:11