iOS 7 UIBarButton back button arrow color

后端 未结 17 1997
情话喂你
情话喂你 2020-12-04 06:30

I\'m trying to change the back button arrow

\"enter

I\'m currently using the

17条回答
  •  再見小時候
    2020-12-04 06:40

    You can set the color on the entire app navigation's bar using the method

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:
    (NSDictionary *)launchOptions{
        [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
    }
    

提交回复
热议问题