How can I hide the status bar in iOS 7.1. with iPhone app running in iPad? -


this question has answer here:

i have used below methods hide status bar.

set .plist configuration hiding status bar , added below method

- (bool)prefersstatusbarhidden  {     return yes; } 

but in ios 7.1 update, status bar not hides while running app. 1 have solution ?

issue exist iphone app while running on ipad

add following info.plist:

-(bool)prefersstatusbarhidden { return yes; } 

Comments

Popular posts from this blog

php - Magento - Deleted Base url key -

javascript - Tooltipster plugin not firing jquery function when button or any click even occur -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -