MPMoviePlayer 可以调整动画大小吗?

发布于 2024-10-31 15:07:58 字数 103 浏览 0 评论 0原文

我似乎找不到答案,或者我没有正确搜索。

我想知道是否可以手动调整电影播放器​​的大小并在调整大小期间显示它的动画,就像您选择全屏播放时一样。

预先感谢您的输入!

I can't seem to find an answer or I'm not searching correctly.

I would like to know if it is possible to manually resize the movieplayer and show it animating during the resize like it does when you select it to play fullscreen.

Thank you in advance for input!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唔猫 2024-11-07 15:07:58

IIRC,我已经用 MPMoviePlayerController 做到了这一点。我在发布的应用程序中使用 AVPlayer 进行操作。当然,如果你要做全屏,你应该使用全屏键,否则使用下面的代码。以下是如何使几乎任何东西都变得生动起来:

[UIView animateWithDuration:0.5
                 animations:^{ myMovieView.frame = newFrame; }];

IIRC, I have done so with MPMoviePlayerController. I do with AVPlayer in a released app. Of course, if you are doing fullscreen, you should use the fullscreen key, and otherwise use the following code. Here is how to make practically anything animate:

[UIView animateWithDuration:0.5
                 animations:^{ myMovieView.frame = newFrame; }];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文