当用户触摸图像视图时,如何突出显示它?
可能的重复:
我的 UIImageView 的任务
我如何突出显示我的 UIImageview 并在顶部显示删除按钮(十字按钮)当用户触摸 UIImageview 时 imageview 的变化?
Possible Duplicate:
Tasks with my UIImageView
How can i highlight my UIImageview and display a deleteButton(cross button) on top of the imageview when user touching the UIImageview?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建一个添加十字按钮的 IBAction 并将其连接到界面生成器中的 touchDown 事件。您可能可以制作一个计时器,在激活之前给它几秒钟的时间。
选项2:阅读有关gestureRecognizers的内容,它们非常简单,我在几个小时内就学会了它们。
http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/GestureRecognizers/GestureRecognizers.html <-- 关于识别器的所有内容
You need to create a IBAction that adds the cross button and wire it to the touchDown event in interface builder. You could probably make a timer that will give it a couple seconds before activating.
Option 2: read about gestureRecognizers, they are very simple and I learned them in a couple hours.
http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/GestureRecognizers/GestureRecognizers.html <-- all about recogizers
这非常简单。使用
在下面的方法中编写一段代码,用于检测手势并弹出删除按钮。
用于删除使用
It's pretty straight forward. Use
In the methods below write a code for detecting gestures and popping up a delete button.
For deleting use