UIView接收触摸和滑动动作
我是 iOS 开发的新手;我想开发一个简单的应用程序。
在我的应用程序中,有一个视图是 xib 的成员。我想在我的视图上接收用户的触摸和滑动操作以运行一些滑动动画。
我找到了一些关于这个动画的代码,但我找不到如何在 UIView 中接收滑动动作。
至少,我想解释一下为什么我使用视图。该视图将包含两个或多个标签。所以我不能确定选择 Rect Button 还是 UIView。
我希望你能帮助我。
I am a newbee in iOS development; and i want to develop a simple application.
In my application there is a view that is a member of xib. I want to receive user's touch and slide actions on my view to run some sliding animations.
I found some codes about this animation but i couldn't find how can i receive sliding action in UIView.
At least, i wanna explain why i used view. This view will contains two or more labes. So i couldn't be sure to choose Rect Button or UIView.
I hope you can help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要查看手势识别器。网上有大量资源和示例。例如,这里是一个有关如何使用滑动的示例(幻灯片)手势识别器。
You need to look at Gesture Recognizers. There are tonnes of resources and examples online. For example, here's an example on how to use swipe (slide) gesture recognizers.