-, MPMusicPlayerControllerPlaybackStateDidChangeNotification , . , userInfo (, , ).
:
- (void)playbackStateDidChange:(NSNotification *)notification {
static NSString * const stateKey = @"MPMusicPlayerControllerPlaybackStateKey";
NSNumber *number = [[notification userInfo] objectForKey:stateKey];
MPMusicPlaybackState state = [number integerValue];
MPMusicPlayerController *player = [notification object];
}