在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//通知的使用 1.发通知。(以这条通知为例,通知名字:nickNameNotification 通知参数:title) NSNotificationCenter.defaultCenter().postNotificationName("nickNameNotification", object: title);
2.在要监听这则通知的viewDidload方法里面添加观察者,以便监听这则通知 NSNotificationCenter.defaultCenter().addObserver(self, selector: "updateNickName:", name: "nickNameNotification", object: nil);
3.实现2中的selector,监听到通知调用的方法 func updateNickName(title:NSNotification)
{
var str = title.object as String;
self.titleLable.text = str;
}
|
请发表评论