如何让pageController控制UIImageView?
我想要一个UIImageView向左滑动,UIImageView会改变图像,此时pageController +1,如果向右滑动,pageContoller -1,并显示上一个图像......我该如何实现?有简单的代码吗? thz u。
I want a UIImageView swipe left, the UIImageView will change the image, at this time, the pageController +1, if swipe right, the pageContoller -1, and display the previous image... ...How can I implement it? Any simple code? thz u.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将 UISwipeGestureRecognizer 附加到 UIImageView 即可。当手势识别器触发时,您将检查其方向,然后更改图像并相应地更新 pageController。
Just attach a UISwipeGestureRecognizer to the UIImageView. When the gesture recognizer triggers, you would check it's direction and then change images and update the pageController accordingly.