ios怎么修改textfield光标颜色
发布网友
发布时间:2022-04-20 17:01
我来回答
共1个回答
热心网友
时间:2022-05-19 19:13
参考如下:
1、[textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; 这个方法可能在某个时间段有用。
2、[UITextField appearance] setTintColor:[UIColor redColor]]; 这个方法会影响所有的TextField。
3、textField.tintColor = [UIColor redColor]; 这个设置某个,但在InterfaceBuilder中设置不好用。