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

UIButton 学习笔记

时间:2015-07-31 10:49:16      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

   1.UIButton 创建不需要做内存管理 原因是:用button自己的便利构造器的方式来创建对象

       例子: 

     UIButton *button =[UIButton buttonWithType:UIButtonTypeSystem];


       2.指定button的位置和大小

       例子:

    button.frame=CGRectMake(100, 100, 150, 40);

          3.设置背景颜色

        button.backgroundColor =[UIColor redColor];

    

    4.button不用release


    5.button设置标题

     [button setTitle:@"确认" forState:UIControlStateNormal];
        

         6.button 标题字体大小

         button.titleLabel.font=[UIFont systemFontOfSize:20]


         7.
设置一下圆角和边框

      button.layer.borderWidth =3;

      button.layer.cornerRadius=20;

        8.点击方法

         [button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];

        button最重要的方法


          9. 设置一个tag值

     button.tag =1000;

    

    10.1.button设置背景图片

   [button setBackgroundImage:[UIImage imageNamed:@"checked.png"]        forState:UIControlStateNormal];
     

    10.2.如果想使用setImage设置图片的话,button的类型要调整成custom,setImage方法不会把图片放大成和按钮一样大小

          





            



版权声明:本文为博主原创文章,未经博主允许不得转载。

UIButton 学习笔记

标签:

原文地址:http://blog.csdn.net/mltianya/article/details/47164663

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