Update README.md

Extend tutorial for hiding at startup. One does not need to directly change Xcode project to hide splash screen. It can be made through config.xml
This commit is contained in:
Milton 2019-01-04 15:56:14 -03:00 committed by GitHub
parent adcee9f66f
commit 04855d65f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,6 +94,20 @@ Add/edit these two attributes if not present. Set **"Status bar is initially hid
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
Or in config.xml inside "platform" block:
<platform name="ios">
...
<config-file overwrite="true" parent="UIStatusBarHidden" platform="ios" target="*-Info.plist">
<true />
</config-file>
<config-file overwrite="true" parent="UIViewControllerBasedStatusBarAppearance" platform="ios" target="*-Info.plist">
<false />
</config-file>
</platform>
Methods
-------