如何访问 XLFormRowDescriptor 的占位符文本颜色
Posted
技术标签:
【中文标题】如何访问 XLFormRowDescriptor 的占位符文本颜色【英文标题】:How to access placeholder text color of XLFormRowDescriptor 【发布时间】:2017-03-06 21:46:24 【问题描述】:所以,我知道如何设置 XLFormRowDescriptor 项的占位符文本:
[rowZIPCodeInput.cellConfig setObject:@"wheee" forKey:@"textField.placeholder"];
我可以使用编辑文本的颜色
[rowZIPCodeInput.cellConfig setObject:[UIColor pp_yellow] forKey:@"textLabel.textColor"];
但我不知道如何编辑占位符文本的颜色。有点像
[rowZIPCodeInput.cellConfig setObject:[UIColor pp_yellow] forKey:@"textField.placeholder.textColor"];
可能吗?
【问题讨论】:
【参考方案1】:XLFormRowDescriptor * row = ......
NSAttributedString *string = ....
[row.cellConfig setObject:string forKey:@"textField.attributedPlaceholder"];
https://github.com/xmartlabs/XLForm/issues/241
使用属性字符串
【讨论】:
以上是关于如何访问 XLFormRowDescriptor 的占位符文本颜色的主要内容,如果未能解决你的问题,请参考以下文章