ios – 如何更改React Native光标颜色?

前端之家收集整理的这篇文章主要介绍了ios – 如何更改React Native光标颜色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用React Native,我想更改文本输入的光标颜色.我实际上得到了默认的蓝色.

如何在JavaScript或AppDelegate中设置全局颜色?

解决方法

是的,我们可以通过设置色调来实现.

在项目的AppDelegate.m中.

在self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen] .bounds]之间添加以下代码;和[self.window makeKeyAndVisible] ;,您可以更改全局色调颜色.

self.window.tintColor = [UIColor redColor]; // Here is your color.

或者,在[self.window makeKeyAndVisible];之后添加以下代码,您可以更改TextInput / UITextField的色调颜色.

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

更改UITextView的色调颜色时没有任何反应.

我找不到用JaveScript风格实现它的方法.

原文链接:https://www.f2er.com/iOS/334112.html

猜你在找的iOS相关文章