本文主要是介绍设置PlaceHolder字体颜色,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#pragma mark 设置 Placeholder 颜色
UIColor *color = [ UIColor whiteColor ];
_userNameTextField . attributedPlaceholder = [[ NSAttributedString alloc ] initWithString : @" 用户名 / 邮箱 " attributes:@{ NSForegroundColorAttributeName : color}];
UIColor *color = [ UIColor whiteColor ];
_userNameTextField . attributedPlaceholder = [[ NSAttributedString alloc ] initWithString : @" 用户名 / 邮箱 " attributes:@{ NSForegroundColorAttributeName : color}];
[tempUserNameImageView addSubview:_userNameTextField];
这篇关于设置PlaceHolder字体颜色的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!