我在表格视图单元格上创建了一个文本字段。但我希望能够添加一个占位符。
答案 0 :(得分:1)
您可以使用“检查”面板中的“占位符”字段,如下所示。如果您想以编程方式执行此操作,则可以使用与此类似的内容
//create the attribute dictionary
let placeholderAttr = [
NSForegroundColorAttributeName: UIColor.lightGrayColor(),
NSFontAttributeName: UIFont(name: "HelveticaNeue-Light", size: 22.0)!,
]
//apply the attributes to the placeholder
yourTextField.attributedPlaceholder = NSAttributedString(string: "This is your placeholder text", attributes: placeholderAttr)
yourTextField.textAlignment = NSTextAlignment.Left