ios - Change 1Password App extension navigation bar title color -


i trying change color of navigation bar title , status bar items in 1password app extension. unable find way it.

please image below. enter image description here

there must way it, uber app doing it. please find image below. enter image description here

can 1 please suggest me way it.

change navigationbar title color:

self.navigationcontroller.navigationbar.titletextattributes = @{nsforegroundcolorattributename:[uicolor graycolor]}; 

change status bar font color: 1.in info.plist add item: uiviewcontrollerbasedstatusbarappearance no enter image description here

2.add code in [viewcontroller viewdidload]

tip:if need change viewcontroller status font color,you should add in [appdelegate application:didfinishlaunchingwithoptions:]

[uiapplication sharedapplication] setstatusbarstyle:uistatusbarstylelightcontent]; 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -