我添加一个观察者
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(handleScreenBrightnessMonitoringNotification:)
name:UIScreenBrightnessDidChangeNotification
object:nil];
在我的一种方法中,我希望直接调用handleScreenBrightnessMonitoringNotification
而不使用postNotification。有什么办法可以吗?