我正在使用 NSNotificationCenter,监听器使用以下代码订阅:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(editRSSLAbel:)
name:@"editLabel"
object:nil];
发件人通过此帖子发送通知:
NSDictionary *dataDict = [NSDictionary dictionaryWithObject:@"http://www.nba.com" forKey:@"link"];
[[NSNotificationCenter defaultCenter] postNotificationName:@"editLabel" object:self userInfo:dataDict];
但是,我想通知一个特定的 viewController实例,并且使用上面的机器我没有这样做的能力。
任何想法都会很棒!
提前致谢!