美文网首页
ios修改textField的placeholder的字体颜色、

ios修改textField的placeholder的字体颜色、

作者: 奋斗的蜗牛 | 来源:发表于2016-11-02 14:52 被阅读13次
    • 利用KVC修改
    textField.placeholder = @"username is in here!";  
    [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];  
    [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];
    

    相关文章

      网友评论

          本文标题:ios修改textField的placeholder的字体颜色、

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