标签: javascript ios xcode react-native
当我来回更改视图时,前一个视图变小并出现白框。我认为这只是应用程序的背景或其他东西。是否可以在React Native或X-Code中更改颜色?
答案 0 :(得分:0)
将此添加到AppDelegate.m
self.window.rootViewController.view.backgroundColor = [UIColor colorWithRed:0.05 green:0.39 blue:0.70 alpha:1.0];
这会将其更改为蓝色。