Change color of UINavigationBar

前端 未结 5 1048
囚心锁ツ
囚心锁ツ 2021-01-28 20:38

Hello,

I created UINavigationBar, and I try to change the color bar to aqua color (As in Nib file)

How do I do it?

5条回答
  •  轮回少年
    2021-01-28 21:06

    try this,

    UINavigationController *navigationController;
    UIColor* aqua = [UIColor colorWithRed:0 green:1 blue:1 alpha:1];
    navigationController.navigationBar.tintColor = [UIColor aqua];
    

    regards

提交回复
热议问题