self.usernameTextField.tintColor = [UIColor blackColor];
NSDictionary *attrs = @{NSForegroundColorAttributeName: UIColorFromRGBA(0xffffff, .6f)};
self.usernameTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入帐号".ntes_localized attributes:attrs];
self.passwordTextField.tintColor = [UIColor blackColor];
self.passwordTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入密码".ntes_localized attributes:attrs];
网友评论