编辑
iOS下的发布订阅模式
本文访问次数:0

发布一条消息(Publish a message)

[[NSNotificationCenter defaultCenter] postNotificationName:@"Notification_GetUserProfileSuccess" object:userProfile userInfo:nil];

订阅一条消息(Subscribe a message)

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getUserProfileSuccess:) name:@"Notification_GetUserProfileSuccess" object:nil];

移除订阅

[[NSNotificationCenter defaultCenter] removeObserver:self name:@"Notification_GetUserProfileSuccess" object:nil];

需要输入验证码才能留言

没有任何评论