發送NSNotification我想從這個方法(在單擊UIButton
時)在我AppDelegate.m發送NSNotification
:從AppDelegate中
- (void)alertView:(UIAlertView *)alertView
clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex == 0){
//cancel clicked ...do your action
// HERE
}
}
..和我UIViewControllers
的一個接收它。我怎樣才能做到這一點?
編輯與更多信息:我正在做一個鬧鐘應用程序,當用戶按下UIButton
,我想停止報警。我認爲NSNotifications
是從我的AppDelegate.m文件獲取信息到ViewController.m文件的唯一方法?
你真正的問題是什麼? – Larme
您可能想重新考慮這一點。通知應該通常在視圖控制器的viewWillAppear中註冊:並且在其viewWillDisappear方法中未註冊,所以當您將其發佈到AppDelegate中時,通知可能無法訪問。你想用這個通知做什麼? – Chris
您不能發送NSNotification ...但您可以播放它 – doNotCheckMyBlog