ios怎么修改textfield光标颜色

2024年11月17日 10:25
有1个网友回答
网友(1):

参考如下:
1、[textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; 这个方法可能在某个时间段有用。
2、[UITextField appearance] setTintColor:[UIColor redColor]]; 这个方法会影响所有的TextField。
3、textField.tintColor = [UIColor redColor]; 这个设置某个,但在InterfaceBuilder中设置不好用。