我怀疑在iOS 6中无法更改文本选择(最好是处理)颜色(特别是在UITextView
中)。
但是为了确定,我想问一下。谷歌搜索没有引导我做任何有用的事情,所以如果有人有明确的答案,我会很高兴听到它。
答案 0 :(得分:0)
我认为你可以这样做:
UIColor *color = [UIColor blackColor];
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:placeholderText attributes:@{NSForegroundColorAttributeName: color}];
看起来不够here