Change UITabBar tint colors in the More menu

后端 未结 3 560
面向向阳花
面向向阳花 2020-12-10 20:08

I\'m trying to change the blue colour from icons in the more menu. I tried almost everything I found on Stack Overflow, but nothing worked. I tried this solution, but is not

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-10 20:39

    This is the Swift version of Ludovic's answer.

    Keep in mind that this version only changes the tint color, since the original answer did the text color change in a very hacky way. For changing it properly, you'd have to override moreNavigationController and its cellForRowAt function.

    tabBarController?.tabBar.tintColor = .red
    
    if let moreTableView = tabBarController?.moreNavigationController.topViewController?.view as? UITableView {
        moreTableView.tintColor = .red
    }
    

提交回复
热议问题