Я пытаюсь вызвать метод в uiview из AppDelegate, используя NSNotificationCenter, но безрезультатно.
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
но его никогда не вызывают.
Спасибо за любую помощь!