当 MPMovieControlStyle = MPMovieControlStyleNone 时如何触摸/单击 MPMoviePlayerController 视图
在我的一个应用程序中,我不想显示任何视频控制器。但我需要接触媒体播放器视图。我需要在触摸电影播放器时执行一些其他操作。我怎样才能实现它。请帮忙
提前致谢。
In one of my application, I don't want to show any video controllers. But I need to get the touch on the media player view. I need to do some other action on touch on the movie player. How can I implement that. Please help
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您始终可以将
UITapGestureRecognizer
附加到视图并处理点击。并在
handleTap
中处理点击:当然这仅适用于
iOS 3.2
及更高版本。You can always attach a
UITapGestureRecognizer
to the view and handle the taps.And handle the tap in
handleTap:
Of course this works only on
iOS 3.2
and later.您还可以使用 UIGestureRecognizer 的委托方法。
You can also use this delegate method of UIGestureRecognizer.