美文网首页
知识点总结18:给textField封装一个占位文字的分类需要注

知识点总结18:给textField封装一个占位文字的分类需要注

作者: 枫之叶_小乙哥 | 来源:发表于2017-02-07 22:48 被阅读9次

    UITextField的占位文字分类:

    // 在.h文件
    #import <UIKit/UIKit.h>
    
    @interface UITextField (ZGKExtension)
    
    /** 占位文字颜色 */
    @property (strong, nonatomic) UIColor *placeholderColor;
    @end
    
    // 在.m文件
    #import "UITextField+ZGKExtension.h"
    static NSString *const ZGKPlaceholderColor = @"placeholderLabel.textColor";
    
    @implementation UITextField (ZGKExtension)
    
    - (void)setPlaceholderColor:(UIColor *)placeholderColor{
        
    //    if (self.placeholder.length == 0) {
    //        // 破坏了原有的默认行为,原来没有占位文字的,现在设置占位文字颜色后,占位文字就有值了
    //        self.placeholder = @" ";
    //    }
        
        NSString *tempPlaceholder = self.placeholder;
        // 0.placeholderLabel是懒加载,在没有设置占位文字时,没有创建该属性
        // 1.提前设置占位文字,目的是:让他提前创建placeholderLabel,从而可以设置占位文字颜色
        self.placeholder = @" ";
        // 重新将原来的占位文字设置回去,就不会改变其内部的值
        self.placeholder = tempPlaceholder;
        
        // 2.恢复到默认的占位文字颜色
        if (placeholderColor == nil) { // 如果不做处理,设置nil为占位文字颜色,则默认的占位文字颜色就是黑色,而不是灰色,因此要对nil进行特殊处理
            placeholderColor = [UIColor colorWithRed:0 green:0 blue:0.0980392 alpha:0.22];
    
        }
        // 3.设置颜色
        [self setValue:placeholderColor forKeyPath:ZGKPlaceholderColor];
    }
    
    
    - (UIColor *)placeholderColor{
        return [self valueForKeyPath:ZGKPlaceholderColor];
    }
    @end
    

    要使用UITextField的控制器中

    /**** 设置占位文字颜色为nil ****/
    - (IBAction)placeholderColorBtn {  // 点击按钮将占位文字设置为默认颜色
        // 如果不做处理,设置nil为占位文字颜色,则默认的占位文字颜色就是黑色,而不是灰色,因此要对nil进行特殊处理
        self.textField.placeholderColor = nil;
        // 1.虽然self.textField.placeholderColor = nil,但是self.textField.placeholderColor的值并不为nil,而是默认的值,它只是调用了set方法使它的赋值为nil,但是我们可以对nil进行特殊处理
        // 2.就像self.view一样,我们设置self.view = nil,但是我们打印self.view的时候,系统发现view为空就会懒加载重新创建一个新的view,所以view的属性是null_resettable,set方法可以为nil,但是get方法一定不为nil,这里的placeholderColor也是相同道理
        NSLog(@"默认的占位文字颜色: %@", self.textField.placeholderColor);
    }
    
    - (void)viewDidLoad {
        [super viewDidLoad];
    
        UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 70, 200, 35)];
        textField.borderStyle = UITextBorderStyleRoundedRect;
        textField.backgroundColor = [UIColor whiteColor];
        textField.textAlignment = NSTextAlignmentCenter;
        // 要注意先设置占位文字这种情况,因为placeholder是懒加载的,没有设置占位文字,就不会创建控件,更加不会有placeholderLabel,所以就不能设置占位文字颜色
        textField.placeholderColor = [UIColor redColor];
        // 检验没有设置占位文字时,是否打印为null,是否破坏了默认设置(为null则没有破坏)
        NSLog(@"textField.placeholder = %@", textField.placeholder);
        textField.placeholder = @"封装占位文字颜色";
    
        self.textField = textField;
        [self.view addSubview:textField];
    }
    

    相关文章

      网友评论

          本文标题:知识点总结18:给textField封装一个占位文字的分类需要注

          本文链接:https://www.haomeiwen.com/subject/cxomittx.html