lunes, 25 de abril de 2016

iOS: Change status bar text color to white

Subclass UINavigationController and add the following code:

-(UIStatusBarStyle)preferredStatusBarStyle
{
    return UIStatusBarStyleLightContent;
}

Any view not push in the navigation controller needs to override that method as well.

No hay comentarios:

Publicar un comentario