码迷,mamicode.com
首页 > 移动开发 > 详细

IOS-UI-基本控件之UISwitch

时间:2016-02-24 21:14:29      阅读:281      评论:0      收藏:0      [点我收藏+]

标签: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

标签:ios   ui   基本控件   uiswitch   

原文地址:http://2254359459.blog.51cto.com/10776102/1744776

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!