Friday, October 4, 2013

Quick Tip: Dealing with PhoneGap, jQuery Mobile and iOS 7 status bars

We’ve been using PhoneGap a lot for our recent projects to help quickly develop simple mobile apps for clients. With the release of iOS 7, all apps are now running in ‘full screen’ mode, which creates an issue with your viewable content as none of our apps were compensating for the top status bar (and thus, overlaying headers, navigation, etc).

The easiest way to handle this is discussed here, but if you’re using jQuery Mobile in tandem with PhoneGap/Cordova, you’ll need to make sure you’re adjusting the ui element as such:

.ui-page { margin-top: 20px; }

We then can wrap a style inject or class add into our document load so we only apply this override for iOS 7.

You also could compensate for the full-screen mode in your app layout, but as a stop-gap this should work fine.

posted by Dustin Vannatter at 1:09 pm  

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.