gpt4 book ai didi

ios - 如何在iOS中隐藏视频停止播放按钮?

转载 作者:行者123 更新时间:2023-12-01 18:10:33 24 4
gpt4 key购买 nike

enter image description here

在我的应用程序中,我想连续在后台播放视频。所以我不想播放和停止视频以及视频中的透明线。

我尝试下面的代码:

        self.videoController = [[MPMoviePlayerController alloc]initWithContentURL:[NSURL fileURLWithPath:@"/Volumes/Data/Monika/Projects/Salon/Salon/Salon/Images/video/salon.mp4"]];
[self.videoController setControlStyle:MPMovieControlStyleDefault];
self.videoController.view.frame=CGRectMake(0,0, 320, 202);
[self.videoplayview addSubview:self.videoController.view];
[self.videoController play];

最佳答案

只需将控件样式设置为MPMovieControlStyleNone即可,如下所示:

    [self.videoController setControlStyle:MPMovieControlStyleNone];

这是有关控件样式的Apple文档: https://developer.apple.com/library/ios/documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/#//apple_ref/c/tdef/MPMovieControlStyle

关于ios - 如何在iOS中隐藏视频停止播放按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32270338/

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