How can I hide the status bar in iOS 7.1. with iPhone app running in iPad? -
this question has answer here:
- cannot hide status bar in ios7 25 answers
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
Post a Comment