iOS 改变UITextField中光标颜色,placeholder颜色

修改光标的颜色,直接修改tintColor就好了。

[[UITextField appearance] setTintColor:[UIColor blackColor]];

或者直接在XIB上修改,都可以有效。

修改placeholder颜色

self.mobileTF.attributedPlaceholder = [[NSAttributedString alloc] initWithString:self.mobileTF.placeholder attributes:@{NSForegroundColorAttributeName:[UIColor redColor]}];

你可能感兴趣的:(iOS 改变UITextField中光标颜色,placeholder颜色)