iOS UITextField设置placeholder颜色

设置UITextField的placeholder颜色

  UIColor *color = [UIColor blackColor];

    textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"密码" attributes:@{NSForegroundColorAttributeName: color}];

原文地址:https://www.cnblogs.com/Ewenblog/p/3891782.html