改变输入框的placehould的颜色
Posted 我叫小小虎
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改变输入框的placehould的颜色相关的知识,希望对你有一定的参考价值。
UIColor *color = [UIColor whiteColor];
_usernameTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入账号" attributes:@{NSForegroundColorAttributeName: color}];
附带找window的跟视图控制器
UIWindow *window = [UIApplication sharedApplication].keyWindow;
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:loginVC];
window.rootViewController = nav;
以上是关于改变输入框的placehould的颜色的主要内容,如果未能解决你的问题,请参考以下文章
js验证非空后,输入框边框变红,如果输入正确怎么让边框恢复到默认的颜色?
当用js动态的改变一个输入框中的值后,并不能触发它的onchange事件why?