常用属性:
BOOL enabled
空间默认是启用的,要禁用控件,可以将enabled属性设置为NO,这样将导致控件会略任何触摸控件事件。被禁用后,控件还可以用不同的方式显示自己,
比如变成灰色不可用。由空间的子类完成的,这个属性却存在于UIControl中。
实例演示:
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(40, 60, 100, 60)];
button.backgroundColor = [UIColor orangeColor];
button.enabled = NO;
[button addTarget:self action:@selector(onButton) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
- (void)onButton{
NSLog(@"button被点击");
}//不会有输出结果,因为button的事件被禁用。
BOOL selected;
当用户选中控件时,UIControl类会将其selected属性设置为YES。子类有时使用这个属性来让其选择自身,或者来表现不同的行为方式。
布局方式:
UIControlContentVerticalAlignment:垂直对齐方式
1.UIControlContentVerticalAlignmentCenter //居中
2.UIControlContentVerticalAlignmentTop //置顶
3.UIControlContentVerticalAlignmentBottom //底部
4.UIControlContentVerticalAlignmentFill //填充全部
UIControlContentHorizontalAlignment:水平对齐方式
1.UIControlContentHorizontalAlignmentCenter //居中
2.UIControlContentHorizontalAlignmentLeft //居左
3.UIControlContentHorizontalAlignmentRight //居右
4.UIControlContentHorizontalAlignmentFill //填充全部
UIControl介绍(二)
- (void)addTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents;
UIControl类的提供的标准机制,来进行事件登记和接收。这可以指定控件在发生特定事件时,通知代理的一个方法。此方法用于注册一个事件,事件可以用逻辑OR合并在一起,因此可以在一次单独的addTarget调用中指定多个事件,下列事件为基类UIControl所支持,除非另有说明,也是用所有控件:
UIControlEventTouchDown
单点触摸按下事件:用户点触屏幕,或者又有新手指落下的时候触发
例如:[button addTarget:self action:@selector(onButton) forControlEvents:UIControlEventTouchDown];
UIControlEventTouchDownRepeat
多线触摸按下事件,点触计数大于1:用户按下两根手指以上时候触发
UIControlEventTouchDragInside
当一次触摸在控件窗口内拖动时
UIControlEventTouchDragUotside
当一次触摸在控件窗口之外拖动时
UIControlEventTouchDragEnter
当一次触摸从控件窗口之外拖动到内部时
UIControlEventTouchExit
当以一次触摸从控件窗口内部拖动到外部时
UIControlEventTouchUpInside
所有在控件之内触摸抬起事件
UIControlEventTouchOutside
所有在控件之外触摸抬起事件(点触必须开始与控件内部才会发送通知)
UIControlEventTouchCancel
所有触摸取消事件,即依稀触摸因为放上了太多手指而被取消或者被上锁或者电话呼叫打断
UIControlEventTouchChanged
当控件的值发生改变时,发送通知。用于滑块,分段控件以及其他取值的控件
UIControlEventEditingDidBegin
当文本控件中开始编辑是发送通知
UIControlEventEditingChanged
当文本控件的文本被改变时发送通知
UIControlEventEditingDidEnd
当文本控件编辑结束时发送通知
UIControlEventEditingDidOnEit
当文本控件内通过按下回车键(或等价行为)结束编辑时,发送通知
UIControlEventEditingEvents
通知所有关于文本编辑的事件
UIControlEventAllEvents
通知所有事件
UIControl介绍(三)
- (void)removeTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents;
删除一个或多个事件的响应动作,可以是使用UIControl类的removeTarget.使用nil值就可以将给定事件的目标所有动作删除:
注册事件的时候,方法签名有两种:
-(void)onEventMethod:(UIControl *)sender;
-(void)onEventMethod;