在cordova-plugin-splashscreen中更改Splash Screen Spinner的颜色

Flo*_*zil 5 splash-screen cordova ionic-framework cordova-plugins

我即将用Ionic/Cordova完成我的第一个App.

是的,它很棒,但有时我想知道为什么事情如此复杂(所有这些插件和东西:))

我想知道我是否可以改变Splash-Screen-Spinner颜色.

有任何想法吗?我搜索死源代码:颜色,微调......,但我没有找到提示.

我想这会对很多人有所帮助.

问候

spu*_*n1k 0

如果您想更改 iOS 上的“cordova-plugin-splashscreen”微调器颜色。有 3 种预定义的颜色选项可供选择(不知道如何将其更改为任何颜色)。您必须手动编辑“/plugins/cordova-plugin-splashscreen/src/ios”内的 iOS 插件文件“CDVSplashScreen.m”。

灰色(默认 - 搜索此行):

UIActivityIndicatorViewStyle topActivityIndicatorStyle = UIActivityIndicatorViewStyleGray
Run Code Online (Sandbox Code Playgroud)

白色的

UIActivityIndicatorViewStyle topActivityIndicatorStyle = UIActivityIndicatorViewStyleWhite; 
Run Code Online (Sandbox Code Playgroud)

白色大号

UIActivityIndicatorViewStyle topActivityIndicatorStyle = UIActivityIndicatorViewStyleWhiteLarge
Run Code Online (Sandbox Code Playgroud)

在文件中找到:

/*
 * The Activity View is the top spinning throbber in the status/battery bar. We init it with the default Grey Style.
 *
 *     whiteLarge = UIActivityIndicatorViewStyleWhiteLarge
 *     white      = UIActivityIndicatorViewStyleWhite
 *     gray       = UIActivityIndicatorViewStyleGray
 *
 */
Run Code Online (Sandbox Code Playgroud)

我还找到了一种更改微调器位置的方法,请查看我的堆栈帖子