对于Tabbar中的选中字体颜色,常见的设置方法都是通过代码进行设置.
[self.tabBarController.tabBar setSelectedImageTintColor:[UIColor redColor]];
但是我更倾向于能在布局图形界面中进行处理的尽量不要在代码中进行处理,所以在storyboard中,可以在tabbar的 Show the Identity inspector 标签下,在User Defined Runtime Attributes中,添加项 Keypath:selectedImageTintColor Type:Color Value:(直接点击弹出调色板,设置你需要的颜色).完成后,运行下程序,字体颜色就变了.