前言

	NS_CLASS_AVAILABLE_IOS(2_0) @interface UIControl : UIView
@available(iOS 2.0, *) public class UIControl : UIView
  • UIControl 从字面翻译成为控制器,可以触发事件,达到和用户进行交互。

1、UIControl 的创建

  • Objective-C

    	// 实例化 UIControl 对象
    UIControl *control = [[UIControl alloc] initWithFrame:CGRectMake(self.view.bounds.size.width/2 - 100, 100, 200, 100)]; control.backgroundColor = [UIColor redColor]; [self.view addSubview:control]; // 添加/删除触发事件
    /*
    - (void)addTarget:(nullable id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents;
    - (void)removeTarget:(nullable id)target action:(nullable SEL)action forControlEvents:(UIControlEvents)controlEvents; (id)target: 响应对象,就是触发了 control 的某个事件后响应谁的方法
    (SEL)action: 触发某个事件后响应 target 的哪个方法
    (UIControlEvents)controlEvents: 触发 control 的哪个事件 UIControlEventTouchDown // 按下
    UIControlEventTouchDownRepeat // 双击,连续按下2次
    UIControlEventTouchDragInside // 内部拖动,不松手就触发事件,一直触发
    UIControlEventTouchDragOutside // 向外拖出,不松手就触发事件,一直触发
    UIControlEventTouchDragEnter
    UIControlEventTouchDragExit // 向外拖出,不松手就触发事件,只触发一次
    UIControlEventTouchUpInside // 单击
    UIControlEventTouchUpOutside // 向外拖出,松手后触发事件
    UIControlEventTouchCancel UIControlEventValueChanged // 数值改变,sliders, etc. UIControlEventEditingDidBegin // 开始编辑,UITextField
    UIControlEventEditingChanged // 编辑中
    UIControlEventEditingDidEnd // 结束编辑
    UIControlEventEditingDidEndOnExit // 结束编辑,'return key' ending editing UIControlEventAllTouchEvents // 所有事件,for touch events
    UIControlEventAllEditingEvents // 所有编辑事件,for UITextField
    UIControlEventApplicationReserved // range available for application use
    UIControlEventSystemReserved // range reserved for internal framework use
    UIControlEventAllEvents
    */ // 添加触发事件
    [control addTarget:self action:@selector(controlClick:) forControlEvents:UIControlEventTouchUpInside]; // 一个控件可以添加多个事件
    [control addTarget:self action:@selector(controlClickOther:) forControlEvents:UIControlEventTouchDragOutside]; // 删除添加的事件
    [control removeTarget:self action:@selector(controlClickOther:) forControlEvents:UIControlEventTouchDragOutside];
  • Swift

    	// 实例化 UIControl 对象
    let control:UIControl = UIControl(frame: CGRectMake(self.view.bounds.size.width/2 - 100, 100, 200, 100)) control.backgroundColor = UIColor.redColor() self.view.addSubview(control) // 添加/删除触发事件
    /*
    public func addTarget(target: AnyObject?, action: Selector, forControlEvents controlEvents: UIControlEvents)
    public func removeTarget(target: AnyObject?, action: Selector, forControlEvents controlEvents: UIControlEvents) target: 响应对象,就是触发了 control 的某个事件后响应谁的方法
    action: 触发某个事件后响应 target 的哪个方法
    controlEvents: 触发 control 的哪个事件 TouchDown // 按下
    TouchDownRepeat // 双击,连续按下2次
    TouchDragInside // 内部拖动,不松手就触发事件,一直触发
    TouchDragOutside // 向外拖出,不松手就触发事件,一直触发
    TouchDragEnter
    TouchDragExit // 向外拖出,不松手就触发事件,只触发一次
    TouchUpInside // 单击
    TouchUpOutside // 向外拖出,松手后触发事件
    TouchCancel ValueChanged // 数值改变,sliders, etc. EditingDidBegin // 开始编辑,UITextField
    EditingChanged // 编辑中
    EditingDidEnd // 结束编辑
    EditingDidEndOnExit // 结束编辑,'return key' ending editing AllTouchEvents // 所有事件,for touch events
    AllEditingEvents // 所有编辑事件,for UITextField
    ApplicationReserved // range available for application use
    SystemReserved // range reserved for internal framework use
    AllEvents
    */ // 添加触发事件
    control.addTarget(self, action: #selector(UiControl.controlClick(_:)), forControlEvents: .TouchUpInside) // 一个控件可以添加多个事件
    control.addTarget(self, action: #selector(UiControl.controlClickOther(_:)), forControlEvents: .TouchDragOutside) // 删除添加的事件
    control.removeTarget(self, action: #selector(UiControl.controlClickOther(_:)), forControlEvents: .TouchDragOutside)

2、自定义点击触发事件处理

  • Objective-C

    	// 控件触发事件处理,一般响应方法都会有一个参数,没有也可以,该参数一般是触发的对象
    - (void)controlClick: (UIControl *)control { } - (void)controlClickOther: (UIControl *)control { }
  • Swift

    	// 控件触发事件处理,一般响应方法都会有一个参数,没有也可以,该参数一般是触发的对象
    func controlClick(control:UIControl) { } func controlClickOther(control:UIControl) { }

iOS - UIControl的更多相关文章

  1. iOS UIControl 详解

    UIControl是UIView的子类,当然也是UIResponder的子类.UIControl是诸如UIButton,UISwitch,UItextField等控件的父类,它本身包含了一些属性和方法 ...

  2. iOS UIControl 事件的说明(转)

    在控件事件中,简单解释下下面几个事件. 说明:由于是在“iOS 模拟器”中测试的,所以不能用手指,只能用鼠标. 1)UIControlEventTouchDown 指鼠标左键按下(注:只是“按下”)的 ...

  3. iOS学习24之UIControl及其子类

    1. UIControl初识 1> 概述 UIControl是有控制功能的视图( 如UIButton.UISlider.UISegmentedControl等)的父类 只要跟控制有关的控件都是继 ...

  4. iOS学习之UIControl

    一.UIControl初识      1.UIControl是有控制功能的视图(比如UIButton.UISlider.UISegmentedControl等)的父类. 只要跟控制有关的控件都是继承于 ...

  5. ios学习笔记之UIControl解读

    UIControl,相信大家对其并不陌生吧,比如平常最常用的UIButton就是继承自UIControl的.按照惯例,还是先来看看为什么有UIControl这个类?什么时候用到它? 查下文档就可以看到 ...

  6. 含有按钮的ScrollView在iOS8中无法滚动的解决办法 | ScrollView with UIControl/UIButton subviews not scrollable under iOS 8

    转自:http://zcw.me/blogwp/%E5%90%AB%E6%9C%89%E6%8C%89%E9%92%AE%E7%9A%84scrollview%E5%9C%A8ios8%E4%B8%A ...

  7. IOS开发UI基础UIControl事件

    UIControl事件1.UIControlEventTouchDown单点触摸按下事件:用户点触屏幕,或者又有新手指落下的时候. 2.UIControlEventTouchDownRepeat多点触 ...

  8. iOS开发~视图(UIView)与控件(UIControl)

    1.UIView类 1.什么是视图 看得见的都是视图 2.什么是控件 一种特殊的视图,都是UIControl的子类,不仅具有一定的显示外观,还能响应高级事件,与用户交互.严格意义上UILabel不是控 ...

  9. UIControl IOS控件编程 及UITextField的讲解

    第一部分 UIKit提供了一组控件:UISwitch开关.UIButton按钮.UISegmentedControl分段控件.UISlider滑块.UITextField文本字段控件.UIPageCo ...

随机推荐

  1. ecshop后台通过ajax搜索原理

    ecshop的搜索其实是功能十分强大的,但是ecshop搜索功能前台和后台还不大一样,前台主要是通过get方式,提交的url进行分页,而在ecshop的后台,则是接受表单的搜索条件,然后通过js发布到 ...

  2. css 样式设计(一)( 在线150个例子 | 背景 | 文本 | 字体 | 链接 | 列表 | 表格 | 盒模型 | 边框 | 轮廓 | 边距 | 填充 |分组和嵌套 | 尺寸 | 定位 | 浮动 |对齐 )

    一.css在线150个例子 http://www.w3cschool.cc/css/css-examples.html 二.背景图片水平方向重复 : body { background-image:u ...

  3. Spring+Quartz实现定时执行任务的配置

    1.要想使用Quartz 必须要引入相关的包:以下是我在项目中gradle中的配置: compile 'org.quartz-scheduler:quartz:2.1.1' 2.Scheduler的配 ...

  4. Prince2七大原则(3)

    Prince2七大原则(3) 我们先来回顾一下,PRINCE2七大原则分别是持续的业务验证,经验学习,角色与责任,按阶段管理,例外管理,关注产品,剪裁. 第三个原则:明确定义的角色和职责. 项目离不开 ...

  5. java 数组基本操作(一维)

    1.数组的声明: 数组类型  数组名[] 2.数组的表示方法 想使用数组中的值,可以使用索引来实现,数组是从0开始的,使用时格式为:数组名[i],比如 a[1],代表第二个值 在数组中要使用数组的长度 ...

  6. JS获取非行间样式

    我们都知道用offset函数获取元素样式是一件很方便的事,但是offset只能获取行间样式,而无法获得非行间样式,这是它的瓶颈所在. 我们都知道js获取行间样式的方法,那么js是如何获取行距样式的呢? ...

  7. 错误Mybatis 元素类型为 "resultMap" 的内容必须匹配 "(constructor?,id*,result*,association*,collection*,discriminat

    今天算是见识了什么事顺序的重要性. 在使用mybatis时由于联合了其他的表,用到了resultMap,之后外加association这一项.可是在替换对应字段的位置上加上association总是报 ...

  8. 关于easyUI在子页面增加显示tabs的一个问题

    在父页面点个链接能动态看到子页面的情况太简单,请看easyUI官网:http://www.jeasyui.com/tutorial/layout/tabs2.php 现在说的是在子页面点个按钮也能触发 ...

  9. 关于Java中的GUI事件处理

    关于事件监听的实现过程通过下面的代码来具体说明: package com.sxt; import java.awt.BorderLayout; import java.awt.event.Action ...

  10. Android invalidate() 和 postInvalidate()的区别

    Android提供了Invalidate方法实现界面刷新,但是Invalidate不能直接在线程中调用,因为他是违背了单线程模型:Android UI操作并不是线程安全的,并且这些操作必须在UI线程中 ...