Search code examples
iosuinavigationbarios-app-extensionuber-api

Change 1Password App extension navigation bar title color


I am trying to change the color of navigation bar title and status bar items in 1Password App extension. I am unable to find a way to do it.

Please the image below. enter image description here

There must be a way to do it, Uber app is doing it. Please find the image below. enter image description here

Can some one please suggest me a way to do it.


Solution

  • Before presenting 1Password screen set the appearance as follows.

    [[UINavigationBar appearance] setBarTintColor:nil];
    [[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
    [[UIBarButtonItem appearance] setTintColor:[UIColor blackColor]];
    [[UINavigationBar appearance] setTitleTextAttributes: @{NSForegroundColorAttributeName:[UIColor blackColor]}];
    

    In completion block of 1Password reset your appearance to your app sepecific appearance.