我正在iOS项目中查看AppDelegate.m文件,有这一行:
rootView.backgroundColor = [[UIColor alloc]
initWithRed:1.0f
green:1.0f
blue:1.0f
alpha:1];
我相信默认情况下这会将iOS根视图设置为白色?我试图谷歌这种表示法,但无法找到任何东西。如何改变rgb值以使其为黑色?
答案 0 :(得分:2)
rootView.backgroundColor = [UIColor blackColor];
https://moduscreate.com/blog/changing-the-react-native-rootview-background-color-ios-and-android/