问题描述
- if条件语句中检测NSNotification
-
在发送NSNotification之后运行下面代码。但是不知道怎么讲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
,如果没检测到,那么就不执行。
时间: 2024-09-18 09:02:18