zoukankan      html  css  js  c++  java
  • UITextField 自定义

    //控制清除按钮的位置

    -(CGRect)clearButtonRectForBounds:(CGRect)bounds

    {

       return CGRectMake(bounds.origin.x + bounds.size.width - 50, bounds.origin.y + bounds.size.height -20, 16, 16);

    }


    //控制placeHolder的位置,左右缩20

    -(CGRect)placeholderRectForBounds:(CGRect)bounds

    {

        

        //return CGRectInset(bounds, 20, 0);

       CGRect inset = CGRectMake(bounds.origin.x+100, bounds.origin.y, bounds.size.width -10, bounds.size.height);//更好理解些

       return inset;

    }

    //控制显示文本的位置

    -(CGRect)textRectForBounds:(CGRect)bounds

    {

        //return CGRectInset(bounds, 50, 0);

        CGRect inset = CGRectMake(bounds.origin.x+190, bounds.origin.y, bounds.size.width -10, bounds.size.height);//更好理解些

        

        return inset;


    }

    //控制编辑文本的位置

    -(CGRect)editingRectForBounds:(CGRect)bounds

    {

        //return CGRectInset( bounds, 10 , 0 );

        

       CGRect inset = CGRectMake(bounds.origin.x +10, bounds.origin.y, bounds.size.width -10, bounds.size.height);

       return inset;

    }

    //控制左视图位置

    - (CGRect)leftViewRectForBounds:(CGRect)bounds

    {

       CGRect inset = CGRectMake(bounds.origin.x +10, bounds.origin.y, bounds.size.width-250, bounds.size.height);

       return inset;

        //return CGRectInset(bounds,50,0);

    }


    //控制placeHolder的颜色、字体

    - (void)drawPlaceholderInRect:(CGRect)rect

    {

        //CGContextRef context = UIGraphicsGetCurrentContext();

        //CGContextSetFillColorWithColor(context, [UIColor yellowColor].CGColor);

        [[UIColororangeColor] setFill];

        

        [[selfplaceholder] drawInRect:rectwithFont:[UIFontsystemFontOfSize:20]];

    }

  • 相关阅读:
    java判断一个字符串是否包含某个字符
    Java去掉Html标签的方法
    如何转换成utf-8格式的,在jsp页面中正常显示换行
    a标签设置手型
    a标签置灰不可点击
    校验手机号码格式
    用JQuery 判断某个属性是否存在hasAttr的解决方法
    验证手机号码 (包含166和199)
    获取短信验证码倒计时
    Noisy Channel模型纠正单词拼写错误
  • 原文地址:https://www.cnblogs.com/yangxiaolong/p/5172418.html
Copyright © 2011-2022 走看看