将占位符添加到表格视图单元格上的文本字段
Posted
技术标签:
【中文标题】将占位符添加到表格视图单元格上的文本字段【英文标题】:Adding placeholder to textfield on table view cell 【发布时间】:2015-12-29 19:58:32 【问题描述】:我在表格视图单元格上创建了一个文本字段。但我希望能够添加一个占位符。
【问题讨论】:
Set textField placeHolder color progrmatically in Swift的可能重复 UITextField placeholder text overlay issue的可能重复 【参考方案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
【讨论】:
以上是关于将占位符添加到表格视图单元格上的文本字段的主要内容,如果未能解决你的问题,请参考以下文章