我想打電話給使用NSNotificationCenter無濟於事從AppDelegate中一個的UIView內的方法..postNotificationName沒有要求觀察者方法
AppDelegate.m
[[NSNotificationCenter defaultCenter] postNotificationName:@"ProcessDidComplete" object:items];
然後通過MainStoryboard,其主要觀點是加載哪個控制器類是MainViewController
在MainViewController.h viewDidLoad中我有
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(ProcessDidComplete:) name:@"ProcessDidComplete" object:nil];
,然後方法
- (void) ProcessDidComplete:(NSNotification *)pNotification
但它永遠不會被調用。
感謝您的幫助!
那麼,你發佈了一個通知,並_after_你註冊一個觀察員呢? – JiaYow 2012-03-13 10:54:07