Is it possible to get rid of the status bar in iOS7 when using Phonegap Build 3.1? I can remove the status bar when building locally in Xcode, but as soon as I try Phonegap Buil
Add this function into MainViewController.m file:
//fix not hide status on ios7 - (BOOL)prefersStatusBarHidden { return YES; }