美文网首页iOS DeveloperiOS开发技术分享
修改UITextField中的placeholder的字体

修改UITextField中的placeholder的字体

作者: CN_HarrySun | 来源:发表于2017-05-03 09:44 被阅读75次

    修改字体颜色:

    [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; 
    

    修改字体大小:

    [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];  
    

    相关文章

      网友评论

        本文标题:修改UITextField中的placeholder的字体

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