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

给文本框添加边框的两种方法

时间:2014-12-08 19:13:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   on   div   log   bs   

1.使用文本框的边框属性    

   //利用文本框的边框属性给文本框添加边框
    UITextField *field = [[UITextField alloc] init];
    field.borderStyle = UITextBorderStyleBezel;
    /* 系统系统的边框风格种类
     UITextBorderStyleNone,    //无边框模式
     UITextBorderStyleLine,    //线
     UITextBorderStyleBezel,   //贝塞尔曲线
     UITextBorderStyleRoundedRect    //圆角矩形
     */

2.利用layer属性给文本框添加边框

    //利用layer属性添加边框
    UITextField *field2 = [[UITextField alloc] init];
    field2.layer.borderWidth = 5.0f;   //边框的宽度
    field2.layer.borderColor = [UIColor greenColor].CGColor;   //边框的颜色
    //设置圆角
    field2.layer.cornerRadius = 5.0f;   //圆角的半径
    field2.layer.masksToBounds = YES;

第二种设置边框的方法是根据作者自身的喜好来设定,其他的空间如按钮,标签等也都可以用这种方法设置边框。 

 

给文本框添加边框的两种方法

标签:style   blog   color   使用   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/hyhl23/p/4151591.html

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