改变输入框的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的颜色的主要内容,如果未能解决你的问题,请参考以下文章