gpt4 book ai didi

iphone - 当 MPMovieControlStyle = MPMovieControlStyleNone 时如何触摸/单击 MPMoviePlayerController View

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

在我的一个应用程序中,我不想显示任何视频 Controller 。但我需要接触媒体播放器 View 。我需要在触摸电影播放器​​时执行一些其他操作。我怎样才能实现它。请帮忙

提前致谢。

最佳答案

您始终可以将 UITapGestureRecognizer 附加到 View 并处理点击。

UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[moviePlayer.view addGestureRecognizer:tap];
[tap release];

并在handleTap中处理点击:

- (void)handleTap:(UITapGestureRecognizer *)gesture {
// Do some other action as intended.
}

当然,这仅适用于 iOS 3.2 及更高版本。

关于iphone - 当 MPMovieControlStyle = MPMovieControlStyleNone 时如何触摸/单击 MPMoviePlayerController View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6384607/

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