//创建通知 [[NSNotificationCenter defaultCenter] postNotificationName:kMusicPlaybackStateChangeNotification object:musicIdentifier]; //监听通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(musicPlabackStateChange:) name:kMusicPlaybackStateChangeNotification object:nil]; //销毁通知 - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; }
原文:http://www.cnblogs.com/pierce-lph/p/6690112.html