我的 UIImageView 的任务

Tasks with my UIImageView(我的 UIImageView 的任务)
本文介绍了我的 UIImageView 的任务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要用我的 UIImageView 执行以下任务.

I need to do the following tasks with my UIImageView.

  1. 点击时突出显示 UIImageView.
  2. UIImageView右侧创建一个清除按钮.
  3. 在创建的清除按钮点击上清除UIImageView.
  4. 在之前清空的UIImageView中设置名为myimage.png的图片.
  1. Highlight the UIImageView on click .
  2. Create a clear button on right side of UIImageView.
  3. Clear the UIImageView on the created clear button click.
  4. Set image named as myimage.png in UIImageView which is cleared before.

任何人都可以帮我做吗?任何示例代码、应用程序或链接可供参考?

Can any one help me to do it?any sample codes,apps or links to refer?

推荐答案

如果你使用的是IB,可以设置图片的高亮状态.转到属性检查器,它是右窗格中的第四个选项.将图像复制到项目中的资源文件夹后,将突出显示"下拉菜单设置为 myImage.png.

If you are using IB, you can set the highlighted state of the image. Go to the attributes inspector, its the 4th option on the right pane. Set the 'highlighted' drop down to myImage.png after copying the image into resources folder in your project.

另外,请确保启用交互复选框(启用用户交互).

Also, make sure the checkbox for Interaction is enabled (to user interaction enabled).

现在,从底部的对象"菜单中添加一个轻击手势识别器.将其添加到您想要的 UIImageView 中.将点击手势识别器的选择器(从右窗格中的最后一个选项或通过右键单击点击手势识别器)连接到 IBAction 以处理点击手势识别器.

Now, add a tap gesture recognizer from the Objects menu in the bottom. Add it to the UIImageView you want. Connect the selector of the tap gesture recognizer (from the last option in the right pane or by right clicking on the tap gesture recognizer) to an IBAction to handle the tap gesture recognizer.

在那个动作中,你可以做任何你想做的事.比如设置一个清除按钮等.您可以使用此将图像视图设置为突出显示..

In that action, you can do whatever you want. Like setting a clear button etc. You can set the imageview to highlighted using this..

self.myImageView.highlighted = YES;

这篇关于我的 UIImageView 的任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How to stop UIBarButtonItem text from truncating?(如何阻止UIBarButtonItem文本被截断?)
java.lang.IllegalStateException: SimpleTypeImpl should not be created for error type(异常:不应为错误类型创建SimpleTypeImpl)
Android Paging 3 - get list of data from PagingDatalt;Tgt; object(Android分页3-从PagingDatalt;Tgt;对象获取数据列表)
Android IllegalArgumentException: The tag for fragment_XXX is invalid. Received: layout-sw600dp/fragment_XXX_0(Android IlLegalArgumentException:Fragment_XXX的标签无效。收到:Layout-sw600dp/Fragment_XXX_0)