所以,我知道如何设置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"];
可能?
答案 0 :(得分:1)
XLFormRowDescriptor * row = ......
NSAttributedString *string = ....
[row.cellConfig setObject:string forKey:@"textField.attributedPlaceholder"];
https://github.com/xmartlabs/XLForm/issues/241
使用属性字符串