Morning ya'll. I've designed a tab bar and managed to customise it with custom tab bar items but i can't figure out how you get the tab bar items to load in their original picture color when view is loaded. My code looks like this:
class GamePage: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
tabBarItem.image = tabBarItem.image?.withRenderingMode(.alwaysOriginal)
tabBarItem.selectedImage = tabBarItem.selectedImage?.withRenderingMode(.alwaysOriginal)
}

