私はコードを持っています:
self.video = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:url]];
self.video.movieSourceType = MPMovieSourceTypeStreaming;
[[self.video view] setFrame:[[self view] bounds]];
[self.view addSubview:self.video.view];
[self.video play];
基本的に、URL をロードして再生を開始します。MPMoviePlayerController の非推奨により、上記の機能を実行するために使用されるフレームワークは何ですか。