在iOS上,我的应用程序是否有办法找出当前在音乐应用程序中播放的歌曲?例如,如果他们在使用我的应用程序时在后台播放歌曲,我可以获得有关该歌曲的信息吗?如果可以,我的应用程序是否有办法在新歌开始播放时收到某种通知?谢谢!
答案 0 :(得分:1)
有可能获得一些信息:(还有许多其他MPMediaItemProperties)就问题中的第二个问题而言,我认为当你的应用处于后台状态时,这是可能的。
编辑:也许您可以在后台每隔xx秒调用此代码,然后比较这些值以查看音乐是否自行更改。请注意,虽然您的应用程序在后台运行的时间有限,但在此过后,您将无法获得更新的值。
#import <MediaPlayer/MediaPlayer.h>
@property (nonatomic, strong) MPMediaItem *lastItem;
- (void)viewDidLoad
{
[super viewDidLoad];
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:20.0 target:self selector:@selector(checkIfSongChanged) userInfo:nil repeats:YES];
[timer fire];
}
- (void)checkIfSongChanged
{
if ([[MPMusicPlayerController iPodMusicPlayer] playbackState] == MPMusicPlaybackStatePlaying)
{
MPMediaItem *nowPlayingMediaItem =
[[MPMusicPlayerController iPodMusicPlayer] nowPlayingItem];
if (self.lastItem && nowPlayingMediaItem != self.lastItem)
{
NSLog(@"New media item is: %@",nowPlayingMediaItem);
}
self.lastItem = nowPlayingMediaItem;
NSLog(@"Media item is: %@,",nowPlayingMediaItem);
}
}
AppDelegate.m:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
UIBackgroundTaskIdentifier __block task = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^
{
[[UIApplication sharedApplication] endBackgroundTask:task];
task = UIBackgroundTaskInvalid;
}];
}