-1
我得到這個警告'的MPMoviePlayerController' 已過時:首先在iOS中棄用9.0
'的MPMoviePlayerController' 已過時:在IOS 9.0
這裏先棄用是我的代碼:
MPMoviePlayerController* _moviePlayer;
_moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:contentURL];
_moviePlayer.shouldAutoplay = YES;
[self.view addSubview:_moviePlayer.view];
[_moviePlayer setFullscreen:YES animated:YES];
您是否看過文檔https://developer.apple.com/reference/mediaplayer/mpmovieplayercontroller,告訴您可以使用哪種對象來替換它? – Larme
我低估了,因爲答案在文檔中,並且很容易找到。你會用'AVPlayerViewController'或'AVPictureInPictureController'顯示嘗試的代碼,我不會那麼做。另外,在鏈接的問題中,有5/6行,它們並不真正複雜,因爲方法名稱與Objective-C – Larme
中的方法名稱幾乎相同。不,你不能說重複,因爲它的語言很快,而且我提到了objective- c在標籤中。我不知道迅捷,現在如何實現? –