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

OneDayOneClass----UISwitch

时间:2015-04-14 23:21:58      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:   ui   api   

// Created By 郭仔  2015年04月14日22:12:47

UISwitch 开关按钮类:


 
    UISwitch *switchView = [[UISwitch alloc]initWithFrame:CGRectMake(54.0f, 16.0f, 100.0f, 28.0f)];
    switchView.on = YES;
    [switchView addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventValueChanged];
    switchView.backgroundColor = [UIColor orangeColor];
    switchView.tintColor = [UIColor redColor];
    switchView.thumbTintColor = [UIColor blackColor];
    [self.window addSubview:switchView];
    [switchView release];
其他功能API搞起技术分享。。。。。


OneDayOneClass----UISwitch

标签:   ui   api   

原文地址:http://blog.csdn.net/guoxianzhuang/article/details/45048783

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