通知的使用

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

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

//销毁通知
- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
相关文章
相关标签/搜索