我正在尝试运行以下代码,除非NSNotification
发送了 a 。我不知道如何将NSNotification
if 语句放入:
if (!self.subViewControllerProv) {
self.subViewControllerProv = [[ProvViewController alloc] init];
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleNotification:) name:@"SomeNotification" object:nil];
回顾一下:如果观察到了NSNotification
消息,那么如果没有观察到alloc
则init
不要ProvViewController
。