タグ

ブックマーク / ameblo.jp/iphone416 (1)

  • 『NSNotification を利用してオブジェクト間のイベント通知を行う』

    オブジェクトAで起こったイベントをオブジェクトBへ通知したい場合は、NSNotification を利用するとオブジェクト間を関連づけなくても通知できます。 ポイント 1.通知の管理は、NSNotificationCenter で管理される NSNotificationCenter は1プロセスで一意なインスタンス [NSNotificationCenter defaultCenter] でインスタンス取得 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; 2.postNotificationName で通知する [notificationCenter postNotificationName:@"hogeevent" object:nil userInfo:nil]; 3.ad

    『NSNotification を利用してオブジェクト間のイベント通知を行う』
  • 1