[[NSNotificationCenter defaultCenter] addobserver:self selector:@selector(startLocating:) name:@"ForceUpdateLocation" object:nil]; // don't forget the ":"
然后发布带有参数字典的通知
[[NSNotificationCenter defaultCenter] postNotificationname:@"ForceUpdateLocation" object:self userInfo:[NSDictionary dictionaryWithObject:@"1,2,3,4,5" forKey:@"categorIEs_IDs"]];
而且方法将是
- (voID)startLocating:(NSNotification *)notification { NSDictionary *dict = [notification userInfo];}总结
以上是内存溢出为你收集整理的objective-c – 使用NSNotificationCenter向另一个班级发送通知全部内容,希望文章能够帮你解决objective-c – 使用NSNotificationCenter向另一个班级发送通知所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)