hi i want to change the unselected bur item color to white and i wrote this code :
for item in self.tabBar.items as [UITabBarItem]! {
if let image = item.image {
item.image = image.imageWithColor(UIColor.whiteColor()).imageWithRenderingMode(.AlwaysOriginal)
}
}
but i gives me this error in the first line :
fatal error: unexpectedly found nil while unwrapping an Optional value
what should i do?