Tagged Questions

The UITabBarItem class implements an item on a tab bar, instances of the UITabBar class. Tab bar items are used to configure the tab bar.

learn more… | top users | synonyms

9
votes
3answers
9k views

Really cool way to create custom UITabBar for iPhone app?

I am doing a lot of researching lately about how to get a different looking with nice effects UITabBar on my iPhone app, but unfortunately I am only finding things on how to replace background color ...
9
votes
5answers
14k views

Preventing a UITabBar from applying a gradient to its icon images

When I make icons for a UITabBar, it applies a gradient to the images. I need to know how to prevent it from having this gradient.
7
votes
2answers
703 views

How do I get the width of a UITabBarItem?

The width of a UITabBarItem varies, depending on how many there are. How do I determine how wide my tab bar items are? I'm looking for a property if possible, as opposed to a mathematical formula, ...
6
votes
2answers
1k views

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 ...
4
votes
4answers
2k views

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? ...
4
votes
1answer
684 views

How to add a badge to the system generated “More” UITabBarItem

My app has 6 menu items, so the OS shows the first 4, then shows a "More" item that links to a screen where the user can select the other two. My problem is that I want to show a badge on the More ...
4
votes
4answers
2k views

Where can I find custom UITabBarSystemItem icons?

Is there a resource out there some place that has custom UITabBarSystemItem icons that others can use. I know you get some from Apple to start, but I would imagine there are a lot more that are very ...
3
votes
1answer
732 views

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 ...
3
votes
1answer
3k views

How to use Apple custom UITabBarItem images?

Apple has provided an example the View Controller Programming Guide, for creating an UITabBarItem, like this: - (id)init { if (self = [super initWithNibName:@"MyViewController" bundle:nil]) { ...
3
votes
4answers
1k views

iPhone UITabbar item double-click pops controllers

just found out something: If you have a Tabbar combined with a NavigationController (that has some views on it's stack) and you double click the TabBarItem, the view pops to the first ViewController, ...
2
votes
1answer
72 views

How can i detect the tabbar item changes from Edit in 'More' tabbar item?

I have 6 tab bar items, 4 titles shown directly and other 2 are in 'More'. I have added 'cell background image' on More tableview. Now the problem is, When i click "Edit" button in More tabbar item ...
2
votes
4answers
73 views

How can i make central raised tabbar item?

At first I want to say that i am new in iPhone application development.I want to make a tabbaritem when i will select a item of the tabbar then it should be look like that Many Thanks In Advance.
2
votes
2answers
2k views

Xcode 4.2 Tabbed Application - Adding New Tab view

I"m working with Xcode 4.2. I started to work with Tabbed Application and now I want to add 3rd and 4th Tabbed to story board on my application. How Can I add it. I try to used it But I cannot. :( I ...
2
votes
1answer
162 views

How to change the width of UITabBarItem?

How to change the width of UITabBarItem? I have an item with the title, that is wider than default item width. How can I fix it?
2
votes
4answers
203 views

Sliding UITabBarItems in UITabBarController

I have a UITabBarController as my rootController with 8 UITabBarItems. and I want to show just 4 UITabBarItems in my screen. By default all my other tab bar items appear in a small tabBarItem called ...
2
votes
2answers
218 views

UITabBarItem.title vs. UINavigationController.title

I allocated a UITabBarItem with a title (initWithTitle) and connected it to a UINavigationController. I found out that if the navigation controller's root view controller has its own title, then that ...
2
votes
2answers
972 views

Custom iOS Tab Bar Selected Color

Is there any way to change the color of the background for when you change the selected tab. I have everything else sorted but i cant think how to do it. Thanks
2
votes
2answers
295 views

How do you customise the title on a UITabBarItem?

When using the method initWithTabBarSystemItem to create a UITabBar object is there a way to set the title. I've tried setting the title property (on the view controller and tab bar item) afterwards ...
2
votes
1answer
350 views

How can I change a UITabBarItem title to the title from another UITabBarItem?

I want to change the title of UITabBarItem 1 to that of UITabBarItem 4. Both are in the same UITabBarController. How do I go about changing these titles?
2
votes
0answers
432 views

Configuring a UITabBar with more than 16 items

My UITabBarController contains more than 16 view controllers. When I go in the "More" tab, I can see all the UITabBarItems. If I click the "Edit" button, I can see the 16 first icons, but there is not ...
2
votes
1answer
604 views

NSImage Overlay/Mask Gradient like iOS

I'm looking to replicate with Cocoa/Core Graphics the process which seems to occur on iOS when setting an image for a UITabBarItem. When the tab bar item is selected, the image is overlayed with a ...
2
votes
2answers
457 views

How to specify width, flexible space and/or position between UITabBarItems in UITabBar?

I am working on a project when client wants UITaBbar lookalike toolbar (icons and titles) at the bottom of some views. Tabbar needs to have 1 item at the left, then free space and 2 items at the ...
2
votes
1answer
432 views

Load views with tab bar item!

is that possible to bring the view with the help of tab bar item. let me explain you the question clearly.I created view based application. Added two vies let us say first and second. the first view ...
2
votes
1answer
1k views

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??
2
votes
1answer
181 views

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 ...
2
votes
5answers
6k views

Iphone Custom UITabBarItem without rounded edges

hi i try to customize a uitabbar i extended uitabbar item and now have a customized image in it but i cant get rid of the rounded edges. code: @interface CustomTabBarItem : UITabBarItem { ...
2
votes
5answers
2k views

Changing font size of tabbaritem

Is it possible to change the font size of tabs?
2
votes
2answers
883 views

iPhone: Trouble reading badge value from uitabbaritem

I'm trying to figure out programmatically if a particular tab bar item in my app has a badge. While I'm debugging, visually, I can plainly see that it does. But when I run this code in the ...
2
votes
1answer
1k views

Max number of UITabBar items allowed in iPhone SDK?

I currently have 8 UITabBar items, all of which are editable in the More view. My question is, what is the absolute maximum number of tab bar items allowed? I understand 5 is the most that can be ...
2
votes
1answer
1k views

iPhone - use the Featured Tabbar item image with custom title

I would like to use the "Featured" tabbar item image with a custom title. I have gone through the various questions on SO regarding this and looked everywhere in the SDK frameworks but could not find ...
1
vote
1answer
77 views

UITabBar navigation and presentModalViewController

I have UITabBar based navigation and want always tabbar on top other widows. In one controller i have method which opens other controller, but when i use this UITabBar disappear. What i should do more ...
1
vote
0answers
49 views

Set accessibility badge on a tabbarItem

I have a tabbar application. If there is a badge on a certain tab VoiceOver pronounces N items. I'd like to make it pronounce N messages. How do I do that?
1
vote
1answer
95 views

Custom UITabBarItem Badge?

How can I add a custom UIImage as the Badge for a UITabBarItem? I.e It will show up when the badge value of the UITabbarItem is set. Thanks in advanced, XcodeDev
1
vote
1answer
115 views

IOS TabBarController Questions

TabBar will be about 2 question. I am using a combination of a TabBar and NavigationController. As the following link. ...
1
vote
1answer
202 views

ios retrieve when uitabbarcontroller item is selected

I need to retrieve when a user click over a tabbaritem into a uitabbarcontroller to change something.. here is my code: - (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item { if ...
1
vote
1answer
59 views

How to: Get order of tabs, save into NSUserDefaults then retrieve

I have a default UITabBarApplication with default views and tabs... etc. I have eight tabs that have the customizable option, so users can reorder tabs. How do I get the order of the tabs, save that ...
1
vote
3answers
105 views

Reclicking in a UITabBarItem

Is there a way to give an action to a reclick of an UITabBarItem? I want to back to the initial screen of my app when the tab bar item is reclicked. I'm using a UITabBarController with UITabBar and ...
1
vote
2answers
119 views

I need Expert Advice on this implementation of UITabBarController

I am currently in need of 8 TabBarItems, and I can show just 4 items in view. And I need to be able to scroll to the next 4 tabBarItems. In the default behavior of the UITabBar, you normally get a ...
1
vote
0answers
93 views

Getting the frame of a particular tab bar item

Is there a way to find the frame of a particular UITabBarItem in a UITabBar? Specifically, I want to create an animation of an image "falling" into one of the tabs, similar to e.g. deleting an email ...
1
vote
2answers
1k views

How change Text color UITabBarItem selected? [closed]

Possible Duplicate: Setting text-color on selected tab bar item Hello, I'm programming in Objective C for iPhone. I wish change the text color of Tab Bar item when I pulse it. ¿Is this ...
1
vote
1answer
157 views

Raised UITabBarItem like DailyBooth

I came across this: http://idevrecipes.com/2010/12/16/raised-center-tab-bar-button/, but I don't really know how to implement it into my app. I have the UITabBarController as my app delegate, but I ...
1
vote
0answers
100 views

UITabBarItem title in centre of title, not at bottom

I want to make place tabbaritem.title in centre of item, it's possible? I'm trying make image with text in center and create custom tabbaritem, but it looks awful.Help me please.
1
vote
3answers
362 views

Programmatically center icons in a TabBarItem in a UITabBarController

I'm programmatically generating a UITabBarController (instantiating view controllers and assigning them to my UITabBarController's viewControllers array). I don't want titles for my TabBarItems. ...
1
vote
1answer
3k views

How to change TabBarItem image and title-issue

I'm working with tabBar Based application with navigation controller.In My application i want to change the tabBarItem image and title.At the time of clicking the pariticular tabBarItem,the control ...
1
vote
2answers
655 views

UITabBarItems in UITabBar show after I click the item not when application launches

This application I'm writing has a problem. I'm setting up the UITabBar in my application window and set the icons in the view files. But when I run the app, the first icons show up (because the view ...
1
vote
1answer
1k views

adding UITabBarItems to the UITabBar

I hope anyone can explane me how to do this: I have a TabBar and two TabBarItems, how can I attatch the Items to the TabBar. I am not doing this via IB because the TabBar only fits have of the screen ...
1
vote
2answers
529 views

Remove UITabBarItem

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 ...
1
vote
1answer
613 views

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

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 ...
1
vote
2answers
1k views

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 ...
1
vote
4answers
635 views

Rename tabs at run-time

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 ...

1 2 3 4