uitabbaritem

Rename tabs at run-time

Hi all, I have a tab bar app that has to display in different languages depending on a user's preference but I can't find much info on how to change the tab names at run-time. I need the tabs to show the correct names at startup, not when the tabs are accessed. Best info I could find was running self.tabBarController.selectedIndex = 1...

How to create Custom TabBarItems?

Hi, Is there any way to create the custom tabBarItems. Here is the reference of how i want those items to look like. Thanks, Yogesh ...

changing the title of standard tabbar icons

Hi, Is that possible to change the title names for standard tabbar icons provided by apple. Say for standard download the icon is like a down arrow with a text download, when i try to change the title in the interface builder it is not getting reflected as expected. Instead the icon is changed to question mark ...

Change title of UItabbaritem in other view?

How do I change the UITabbaritem titles when starting the App? I got a UITabBar with 4 tabs. I want the user to be able to change between two different languages. If the user chooses a different language I need to set a different title to the UITabbaritems. I know I can use self.title = @"title"; but that only changes the current tabbar...

UITabbarController:Is there any way to Switch Tabbar Item(s) of Tabbar

Hi Huys, The senario is, I a TabbarViewController, which contains Tab {A, B, C, D}. After User clicked Tab:B, instead Tab {A, B, C, D}, I want show {E, F, G} as the Tabbar item on the Tabbar. Is there any way to switch Tabbar Item Set? I'm a newbie to iOS. Thanks! EDIT: I've also tried to modify self.tabbarcontroller.tabbar.items, but...

Is there a way to use a custom selected image for UITabBarItem?

I like to have a custom selected image when a user selects an item on the tab bar, by default it selects as blue like but would like to have a green color instead. something like below any thoughts? ...

UITabBarItem Icon Animation

Skype app for iPhone uses animated TabBar icons. For example, during the logging-in the rightmost tab icon shows circulating arrows. While calling the "Call" tab icon softly blinks which is obviously done through animation. I wonder how is it possible to animate tab bar items' icons. In my particular case when the user presses the 'F...

UITabBarItem Does Not Dim on First Disabled Load

I can easily enable and disable the TabBarItems in my App which have no values or content. Works like a charm. I do want to keep all Tabs in order to show that this feature or content will be available on other views throughout the App because this special view is dynamically filled with content over 30times. The TabBarController is sub...

Determining which UIViewController subclass that a UITabBar Item belongs to

I have a UITabBarController instansiated in my appDelegate, but I need a way to know when the user presses the different tab bar items (buttons on the tab bar). -UITabBarDelegate protocol to the rescue (with the required didSelectViewController-method)! With everything wired up in Interface Builder, how do I obtain a reference to the ...

UITabBar selected tint color

I need to change uitabbar selected tint color from blue to yellow. How can i do it??? Can any one help me with this?? ...

UITabBarItem Selected Tab Background: Custom?

Would like to set a custom background for my selected tabs, thus far, subclassing is they way I'm customizing the UITAbBar/UITabBarItem. The question is: Does anybody know (or know where I could find ) what the property is that sets the background? There is a lighter black/grey rounded box around the selected tab. That is what I'm aimi...

[IPhone dev] How can i call the same ViewController from different TabBar items?

Hello, i've developed a ViewController that shows different data according to input parameter; i would like to use a tabBar interface and call the same ViewController from different tabs by passing them different parameters. Can i do this? I actually get errors if i specify the ViewController's NIB in tabBar item. Can you help me please...

objective-c custom UITabBarItem @2x

is it possible to assign a highres custom uitabbaritem image? UIImage *img; img = [UIImage imageNamed:@"[email protected]"]; self.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"more" image:img tag:5]; this doesnt work. is there a workaround, or even better an officel link / solution for this usecase? thanks alex ...

Remove UITabBarItem

Hi everyone, How can I remove a UITabBarItem from a UITabBar? I haven't tried anything, because I haven't found anything from Google searches or the documentation for UITabBar, UITabBarController, or UITabBarItem. Thanks in advance! :) ...

Simulating selected tab bar effect

Partly as a programming exercise, and partly because we may need to include such images in an app some day, I've been trying to figure out how to draw an image like the selected tab in a UITabBar. The basic operation is simple enough in concept: the icon's alpha is used as a mask to draw the blue gradient image onto the tab. (Though I c...