• 给UITextField设置头或尾空白


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

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

    实现起来,比较简单,只需要设置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;
  • 相关阅读:
    遍历二维数组
    冒泡跟扫描共用
    1.8作业
    1.7作业
    1.5作业
    百文百鸡 水仙花数 百马百担
    for循环输出九九乘法表
    循环语句
    1.4作业
    07、找出1-99之间的同构数
  • 原文地址:https://www.cnblogs.com/benbenzhu/p/3796513.html
Copyright © 2020-2023  润新知