我正在使用AVPlayer做一个音乐播放器。当我关闭视图时,音乐会关闭。如何解雇视图和玩家每次都玩。这是我的关闭按钮
- (void)showPlayerView
{
[UIView animateWithDuration:0.5 delay:0.1 options:UIViewAnimationOptionTransitionFlipFromLeft animations:^
{
self.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
} completion:^(BOOL finished)
{
[self dismissViewControllerAnimated:YES completion:nil];
}];
}
答案 0 :(得分:1)
我曾经在AppDelegate中实例化我的AVAudioPlayer,这样它就不会随着ViewController一起发布。