私は 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インスタンスに通知したいのですが、上記の機械化ではそうする能力がありません。
どんなアイデアも素晴らしいでしょう!
前もって感謝します!