码迷,mamicode.com
首页 > 其他好文 > 详细

UISwitch

时间:2015-09-13 14:37:58      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

    UISwitch *myswitch=[[UISwitch alloc]initWithFrame:CGRectMake(100, 40, 0, 0)];
    //打开时颜色
    myswitch.onTintColor=[UIColor redColor];
    //关闭时颜色
    myswitch.tintColor=[UIColor blueColor];
    //打开关闭图片
    myswitch.onImage=[UIImage imageNamed:@"1"];
    myswitch.offImage=[UIImage imageNamed:@"2"];
    //设置初始状态
    myswitch.on=YES;
    [myswitch setOn:YES animated:YES];
    //添加点击事件
    [myswitch addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:myswitch];

 

UISwitch

标签:

原文地址:http://www.cnblogs.com/kyuubee/p/4804828.html

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