答案 0 :(得分:3)
有!
将文本字段连接到viewController,然后以编程方式为其指定颜色。
myTextField.setPlaceholderColor(UIColor.black)
答案 1 :(得分:0)
这样可以轻松控制故事板内的占位符颜色
@IBInspectable var placeHolderColor: UIColor? {
didSet {
let rawString = attributedPlaceholder?.string != nil ? attributedPlaceholder!.string : ""
let str = NSAttributedString(string: rawString, attributes: [NSForegroundColorAttributeName: placeHolderColor!])
attributedPlaceholder = str
}
}