objective-c – Cocoa自定义通知示例

objective-c – Cocoa自定义通知示例,第1张

概述有人可以告诉我一个Cocoa Obj-C对象的例子,有一个自定义通知,如何启动它,订阅它,并处理它? @implementation MyObject// Posts a MyNotification message whenever called- (void)notify { [[NSNotificationCenter defaultCenter] postNotification 有人可以告诉我一个Cocoa Obj-C对象的例子,有一个自定义通知,如何启动它,订阅它,并处理它?解决方法
@implementation MyObject// posts a MyNotification message whenever called- (voID)notify {  [[NSNotificationCenter defaultCenter] postNotificationname:@"MyNotification" object:self];}// Prints a message whenever a MyNotification is received- (voID)handleNotification:(NSNotification*)note {  NSLog(@"Got notifIEd: %@",note);}@end// somewhere elseMyObject *object = [[MyObject alloc] init];// receive MyNotification events from any object[[NSNotificationCenter defaultCenter] addobserver:object selector:@selector(handleNotification:) name:@"MyNotification" object:nil];// create a notification[object notify];

有关详细信息,请参阅NSNotificationCenter的文档。

总结

以上是内存溢出为你收集整理的objective-c – Cocoa自定义通知示例全部内容,希望文章能够帮你解决objective-c – Cocoa自定义通知示例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1047829.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存