I know we can do setTitleTextAttributes against UITabBar
It doesn’t show up anywhere in:
Where can I see complete list of selectors we can send to UITabBar to customize it’s appearance?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Its the UITabBarItem’s that declare all methods for customizing title appearance, not the UITabBar.
Methods to set the position of the title are declared in UITabBarItem: http://developer.apple.com/library/ios/#documentation/uikit/reference/UITabBarItem_Class/Reference/Reference.html#//apple_ref/occ/cl/UITabBarItem
Methods to customize the title appearance are declared in UIBarItem (which UITabBarItem inherits from): http://developer.apple.com/library/ios/#documentation/uikit/reference/UIBarItem_Class/Reference/Reference.html#//apple_ref/occ/cl/UIBarItem
You can access an array of tab bar items via your tab bar’s “items” property.