複数のオブザーバーへの通知の投稿に関する詳細なチュートリアルが必要です。これが私のコードです
-(void)viewDidLoad
{
NSString *notificationName = @"MT";
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(useNotificationWithString:)
name:notificationName
object:nil];
}
これは、他のクラスのオブジェクトにも通知を投稿したい現在のオブジェクト用です。