如何访问XLFormRowDescriptor的占位符文本颜色

时间:2017-03-06 21:46:25

标签: ios objective-c xlform

所以,我知道如何设置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 个答案:

答案 0 :(得分:1)

XLFormRowDescriptor * row = ......
NSAttributedString *string = ....
[row.cellConfig setObject:string forKey:@"textField.attributedPlaceholder"];

https://github.com/xmartlabs/XLForm/issues/241

使用属性字符串