通知的使用
//创建通知 [[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 阅读(147) 评论(0) 编辑 收藏 举报