美文网首页
设置textfield的placeholder的颜色

设置textfield的placeholder的颜色

作者: Suger_森 | 来源:发表于2018-10-09 11:17 被阅读3次
    //第一种
    
    UITextField * _userName = [[UITextField alloc]init];
    UIColor *color = [UIColor whiteColor];  
    _userName.attributedPlaceholder = [[NSAttributedString alloc]initWithString:@"用户名"attributes:@{NSForegroundColorAttributeName:color}];     
    
    
    //第二种(不建议使用,调用私有方法上线审核时容易被拒)
    
    [_userName setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];  
    

    相关文章

      网友评论

          本文标题:设置textfield的placeholder的颜色

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