Problem Description
When exporting to PhoneGap there is an option "hide status bar". If you compile this for iOS on Adobe Cloud Compiler the status bar is still shown.
Tested on iOS8, OS version 8.0.2
Attach a Capx
not required
Description of Capx
not required
Steps to Reproduce Bug
- Export any project (could even be an empty one) to PhoneGap
- Select "Hide Status Bar"
- Compile and run on iOS
Observed Result
Status bar still shown
Expected Result
Status bar should be hidden
Affected Browsers
Operating System and Service Pack
C2 on Windows8 64bit
Construct 2 Version ID
r182
Fix
Just add these lines to your config.xml to hide it:
<gap:config-file platform="ios" parent="UIStatusBarHidden">
<true/>
</gap:config-file>
<gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance">
<false/>
</gap:config-file>[/code:1oetzh9q]