1

所以,我知道如何设置 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"];

可能的?

4

1 回答 1

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

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

使用属性字符串

于 2017-03-07T02:31:17.803 回答