美文网首页
10-UISwitch属性介绍

10-UISwitch属性介绍

作者: ForstDragon | 来源:发表于2019-06-18 15:12 被阅读0次
## **1.**** onTintColor**

  处于on时switch 的颜色     
  switchImage.onTintColor = [UIColor grayColor];

## **2.****tintColor **

  处于off时switch 的颜色
  switchImage.tintColor = [UIColor greenColor];

## **3.****onImage    **

  设置on 的图标      
  switchImage.onImage = [UIImage imageNamed:@"1.png"];

## **4.**** offImage**

   设置off的图标  

   switchImage.offImage = [UIImage imageNamed:@"4.png"];

## **5.**** on**

   设置switch的开关

   swithImage.on = YES;

## **6.****thumbTintColor**

   设置拇指颜色

   swithImage.thumbTintColor = [UIColor redColor];

## **7.****增加事件响应机制**

监听的是这个事件:UIControlEventValueChanged,值改变事件

[switchImage addTarget:self action:@selector(switchOn) forControlEvents:UIControlEventValueChanged];

相关文章

  • 10-UISwitch属性介绍

  • 属性介绍

    wireFormat.maxFrameSize “一个完整消息”的最大数据量(单位为byte)

  • 属性介绍

    话务精灵第五章,这只精灵叫索伊,还是特啊,我的,一张得像老虎我,右下角又像猫,还有对翅膀火红色的,所有蛇没有,头上...

  • Less和伸缩布局

    伸缩布局和LESS介绍 其他属性介绍 word-break属性介绍 该属性规定自动换行的处理方法。 normal ...

  • Flutter 之 Divider (六十三)

    1. Divider Divider 定义 1.1 属性介绍 Divider 属性介绍heightDivider ...

  • CoordinatorLayout 属性介绍

    AppBarLayout: 是继承LinerLayout实现的一个ViewGroup容器组件,它是为了Materi...

  • flex属性介绍

    弹性布局:容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位...

  • NSAttributedString  属性介绍

    /* 字符属性 字符属性可以应用于 attributed string 的文本中。 NSString *const...

  • transform 属性介绍

    用途 设置控件的旋转,缩放和平移注意:在函数方法名中带有make的方法是根据最初始的状态来改变, 不带有ma...

  • edgesForExtendedLayout 属性介绍

    tableView 全屏分页布局错乱 导致原因 edgesForExtendedLayout 默认为.all 改为...

网友评论

      本文标题:10-UISwitch属性介绍

      本文链接:https://www.haomeiwen.com/subject/pjufqctx.html