通知的使用

 //创建通知
    [[NSNotificationCenter defaultCenter] postNotificationName:kMusicPlaybackStateChangeNotification object:musicIdentifier];

//监听通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(musicPlabackStateChange:) name:kMusicPlaybackStateChangeNotification object:nil];

//销毁通知
- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

 

posted on 2017-04-10 17:43  Pierce-lph  阅读(146)  评论(0编辑  收藏  举报

导航