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

给UITextField设置头或尾空白

时间:2014-06-20 17:17:11      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   ext   

有时候,我们需要在UITextField的头尾加入一些空白,如下图所示:

bubuko.com,布布扣

其中,黄色和红色部分代表空白。

实现起来,比较简单,只需要设置UITextField的leftView、leftViewMode和rightView、rightViewMode即可,代码如下:

假设现有UItextField * txtField;

    UIView * rView =[[UIView alloc] initWithFrame:CGRectMake(txtField.frame.size.width - 10, 0, 10, txtField.frame.size.height)];
    rView.backgroundColor = [UIColor redColor];
    txtField.rightView = rView;
    txtField.rightViewMode = UITextFieldViewModeAlways;
    UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, txtField.frame.size.height)];
    view.backgroundColor = [UIColor yellowColor];
    txtField.leftViewMode = UITextFieldViewModeAlways;
    txtField.leftView = view;

 

给UITextField设置头或尾空白,布布扣,bubuko.com

给UITextField设置头或尾空白

标签:style   class   blog   code   http   ext   

原文地址:http://www.cnblogs.com/benbenzhu/p/3796513.html

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