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

按钮小结1

时间:2015-04-16 21:30:16      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

按钮这个空间我非常的讨厌,用代码写很恶心

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(0, 0, 50, 50);
//    button.center = CGPointMake(CGRectGetMidX(self.view.bounds), CGRectGetMidY(self.view.bounds));
    [button setTitle:@"转换转换转换" forState:UIControlStateNormal];
    [button setBackgroundColor:[UIColor whiteColor]];
    [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    [button addTarget:self action:@selector(turnToAnotherController:) forControlEvents:UIControlEventTouchDown];
    [self.view addSubview:button];

这是一段简单示例,其中

设置title 只能用 setTitle: 方法

设置字体颜色也只能用对应方法 

button有个textlabel 那个是只读 设置任何都没用的

 

 

按钮小结1

标签:

原文地址:http://www.cnblogs.com/qiqingnan/p/4433111.html

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