//建立通知 [[NSNotificationCenter defaultCenter] postNotificationName:kMusicPlaybackStateChangeNotification object:musicIdentifier]; //监听通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(musicPlabackStateChange:) name:kMusicPlaybackStateChangeNotification object:nil]; //销毁通知 - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; }