通过手势控制视频
我有一个视频,播放相机围绕 3D 模型旋转。我希望能够从左到右滑动以向前播放视频,从右到左滑动以向后播放视频。
这可以在 iOS 4 上完成吗?如何实现?
干杯
I have a video playing a camera rotating around a 3D model. I want to be able to sweep left to right to play the video forwards and right to left to play the video backwards.
Can this be done on iOS 4 and how?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 UISwipeGestureRecognizer 添加到保存视频的视图中,并对其进行配置。
Add a UISwipeGestureRecognizer to the view that holds the video, and configure it.
只需在视频顶部添加一个新的透明视图并捕获该层中的触摸操作
just add a new transparent view on top of your video and catch touch actions in that layer