无论如何都要抓住这个通知吗?
_serverConnectionDiedNotification. Info -- notification=NSConcreteNotification 0x2e7f70 {name = AVController_ServerConnectionDiedNotification; object = <AVController: 0x2aa2a0>}, AVController = <AVController: 0x2aa2a0>, currentTime = 0.00
当我的媒体播放器失去与服务器的连接时,就会发生这种情况。 我想抓住这个通知并尝试重新连接到服务器,继续播放视频。
答案 0 :(得分:0)
您可以使用NSNotificationCenter
中的此方法注册该通知- (void)addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender
然而,NSConcreteNotification是抽象NSNotification类的私有子类,由于Apple不喜欢任何使用私有类的人,我不确定这是否有效。