0

I am testing my app on device with iOS7
My application title seems to merge with the other meta data that apple provides such as Time , Battery life , service provider signal / wifi

This would be very annoying for the end user and would be bad user experience

However the same thing seems cleanly separated in iOS6.x on device

Here are screen prints ( using simulator - which is mimicing what is happening on device )
with iOS6
this is with iOS6

This is with iOS7
enter image description here

Can anyone please suggest what would need to be done to ensure my app title does not merge with the device meta data for iOS7 ?

Thanks
akila

akila
  • 667
  • 2
  • 7
  • 21

1 Answers1

0

You have write this code in your code file:

-(UIStatusBarStyle)preferredStatusBarStyle
{
        return UIStatusBarStyleLightContent;
}

And set status bar style setting in info.plist file like shown in screenshot.

enter image description here

Pradhyuman sinh
  • 3,936
  • 1
  • 23
  • 38