直接调用NSNotification选择器

时间:2016-07-28 18:57:02

标签: objective-c notifications observers

我添加一个观察者

NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self
           selector:@selector(handleScreenBrightnessMonitoringNotification:)
               name:UIScreenBrightnessDidChangeNotification
             object:nil];

在我的一种方法中,我希望直接调用handleScreenBrightnessMonitoringNotification而不使用postNotification。有什么办法可以吗?

0 个答案:

没有答案