MPMusicPlayerController 停止不工作
MPMusicPlayerController stops is not working
我使用 MPMusicPlayerController 创建了一个非常简单的音乐播放器,除了停止按钮(见下图)外,它工作正常。当音乐正在播放并按下停止按钮时,该应用程序不再播放。我试图在后台终止它,但该应用程序无法运行。在中央控制上按下播放后,我就可以再次使用该应用程序(图二)。
还有我的代码
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController ()
{
MPMusicPlayerController *playerController;
MPMediaQuery *query;
}
@end
@implementation ViewController
@synthesize musicTitleLabel;
- (void)viewDidLoad {
[super viewDidLoad];
playerController = [[MPMusicPlayerController alloc] init];
}
- (IBAction)playPressed:(id)sender {
query = [MPMediaQuery songsQuery];
MPMediaItem *item = [[query collections] objectAtIndex:0];
[playerController setNowPlayingItem:item];
[playerController play];
NSString *titleString = [item valueForProperty:MPMediaItemPropertyTitle];
musicTitleLabel.text = [NSString stringWithFormat:@"%@",titleString];
}
- (IBAction)pausePressed:(id)sender {
[playerController pause];
}
- (IBAction)stopPressed:(id)sender {
[playerController stop];
}
我该如何解决这个问题?停止方法的作用是什么?
试试这个:
MPMusicPlayerController *player = [MPMusicPlayerController systemMusicPlayer];
使用 systemMusicPlayer 播放媒体项目将替换用户当前的音乐状态。
我使用 MPMusicPlayerController 创建了一个非常简单的音乐播放器,除了停止按钮(见下图)外,它工作正常。当音乐正在播放并按下停止按钮时,该应用程序不再播放。我试图在后台终止它,但该应用程序无法运行。在中央控制上按下播放后,我就可以再次使用该应用程序(图二)。
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController ()
{
MPMusicPlayerController *playerController;
MPMediaQuery *query;
}
@end
@implementation ViewController
@synthesize musicTitleLabel;
- (void)viewDidLoad {
[super viewDidLoad];
playerController = [[MPMusicPlayerController alloc] init];
}
- (IBAction)playPressed:(id)sender {
query = [MPMediaQuery songsQuery];
MPMediaItem *item = [[query collections] objectAtIndex:0];
[playerController setNowPlayingItem:item];
[playerController play];
NSString *titleString = [item valueForProperty:MPMediaItemPropertyTitle];
musicTitleLabel.text = [NSString stringWithFormat:@"%@",titleString];
}
- (IBAction)pausePressed:(id)sender {
[playerController pause];
}
- (IBAction)stopPressed:(id)sender {
[playerController stop];
}
我该如何解决这个问题?停止方法的作用是什么?
试试这个:
MPMusicPlayerController *player = [MPMusicPlayerController systemMusicPlayer];
使用 systemMusicPlayer 播放媒体项目将替换用户当前的音乐状态。