我需要一个关于向多个观察者发布通知的详细教程。这是我的代码
-(void)viewDidLoad
{
NSString *notificationName = @"MT";
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(useNotificationWithString:)
name:notificationName
object:nil];
}
这是针对当前对象,我也想向其他类的对象发布通知。