IOS-UI-基本控件之UISwitch
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS-UI-基本控件之UISwitch相关的知识,希望对你有一定的参考价值。
UISwitch(开关,默认为关)
ios开发中必不可少的基本控件,主要用于只有两种的选择,比如飞行模式等等,本文主要是列出常用的属性及方法(注XCode版本为7.2)
//默认状态
//属性
@property(nullable, nonatomic, strong) UIColor *onTintColor ;//开着的时候控件的颜色
代码:one.onTintColor=[UIColor brownColor];
如图:
@property(null_resettable, nonatomic, strong) UIColor *tintColor ;//感觉像是边框的颜色,并且带有动画,
代码:one.tintColor=[UIColor redColor];
如图:第二张像个动画
@property(nullable, nonatomic, strong) UIColor *thumbTintColor ;// 按钮的颜色
代码:
one.thumbTintColor=[UIColor blueColor];
如图:
@property(nonatomic,getter=isOn) BOOL on;//是否处于开启状态,默认为NO
//方法
- (instancetype)initWithFrame:(CGRect)frame ; // 设置控件的大小和起始位置
- (nullable instancetype)initWithCoder:(NSCoder *)aDecoder ;//从XIB加载
- (void)setOn:(BOOL)on animated:(BOOL)animated; // 开的时候是否有动画
本文出自 “红角羚羊” 博客,请务必保留此出处http://2254359459.blog.51cto.com/10776102/1744776
以上是关于IOS-UI-基本控件之UISwitch的主要内容,如果未能解决你的问题,请参考以下文章
Android进阶之自定义View实战仿iOS UISwitch控件实现