gpt4 book ai didi

ios - MPMoviePlayerViewController 的 initialPlaybackTime 设置不起作用

转载 作者:行者123 更新时间:2023-12-03 18:30:04 26 4
gpt4 key购买 nike

我在我的应用程序中使用了 MPMoviePlayerViewController,我试图通过遍历 View Controller 的 moviePlayer 属性来设置初始播放时间,然后像这样设置初始播放:

MPMoviePlayerViewController* moviePlayerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:videoUrl];
moviePlayerViewController.moviePlayer.initialPlaybackTime = 100;
[self presentMoviePlayerViewControllerAnimated:moviePlayerViewController];

无论我传入什么,电影总是从头开始。我在这里缺少什么?

最佳答案

这是我的代码示例,其中 initialPlaybackTime 开箱即用(只需复制并粘贴 viewController 上的代码并播放它)。

    MPMoviePlayerViewController* theMovie =
[[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:@"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"]];
theMovie.moviePlayer.controlStyle = MPMovieControlStyleEmbedded;
[theMovie.view setFrame:CGRectMake(0.0, 20.0, 400.0, 250.0)];
[theMovie.moviePlayer setInitialPlaybackTime:10];
[self.view addSubview:theMovie.view];

如果这对您有用,但您自己的视频不起作用,我猜您使用的视频有问题。

关于ios - MPMoviePlayerViewController 的 initialPlaybackTime 设置不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18661250/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com