Questions tagged [uitabbaritem]

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.

Tab bar items gives the ability to switch between different subtasks, views, or modes. A tab bar operates strictly in radio mode, where one item is selected at a time—tapping a tab bar item toggles the view above the tab bar. There is a way to specify a badge value on the tab bar item for adding additional visual information—for example, the Phone application uses a badge on the item to show the number of new messages. This class also provides a number of system defaults for creating items.

991 questions
0
votes
1 answer

Bug with Tab Bar being covered by UITableView

So I have 3 main scenes, each with a tab bar item. The first scene (Account scene) contains a UITableView. Also on this scene I have a button which switches to a different scene that is NOT included on the tab bar. ie. Account scene (which IS on…
0
votes
2 answers

iOS5 setHidden UITabBarItem causing crash

I'm using Storyboards in xcode with iOS5. I have a TabBarController with 6 tabs. Prior to the TabController a user selects a type of account A oR B, if type B is selected I would like to hide one of the tabs. I have a subclass of UITabBarController…
Andy Davies
  • 4,287
  • 5
  • 24
  • 31
0
votes
2 answers

How to remove this bottom bar in UITabBar or UITabBatViewController?

I am trying to do some customization on UITabBar. I am almost done with everything. However, I saw a small bar on the bottom of each UITabBarItem. I don't know what object it is. Can someone please tell me how to remove it? Or if someone can…
flashsnake
  • 532
  • 2
  • 4
  • 14
0
votes
1 answer

can not customize uibarbuttonitem, iphone

What I am having right now is (the uibarbuttonitem is connected to the one in header file) Then I do customization like below - (void)viewDidLoad { [super viewDidLoad]; UIButton *back = [[UIButton alloc]…
tranvutuan
  • 6,089
  • 8
  • 47
  • 83
0
votes
2 answers

How to show tabbar icon full size in iPhone SDK?

How to show image icon of tabbar in full size like in this image you can see. This is my image here you can't see the image is going to be not perfect How to show my image looks like the above image show I have used for showing image this code…
Hrushikesh Betai
  • 2,227
  • 5
  • 33
  • 63
0
votes
1 answer

How to use a specific TabBarItem with a UITabBarController?

I've created a TabBarController, but don't want the usual gray/blue icons with it, so I created another class inheriting from UITabBarItem. So the question is : how can I use these custom icons/items with my tab bar (add them and link them to some…
Rob
  • 15,732
  • 22
  • 69
  • 107
0
votes
1 answer

How to add a custom colorful Image to a tabBar in a TabBarController?

I am using a UITabBarController where i want to load a custom colorful image to the respective TabBar. I want to customize the font size,color and type of the Text for the UITabBar item. I have tried out many possibilities by using image property…
Pradeep Reddy Kypa
  • 3,992
  • 7
  • 57
  • 75
0
votes
2 answers

How to change UITabBarItems default select deselect effect in iPhone?

I want to change default effect of TabBarItem, getting after selecting and deselecting item. I solved this problem for ios5 and later version by using this method [mySchedule setFinishedSelectedImage:[UIImage imageNamed:@"myschedule.png"]…
python
  • 1,407
  • 1
  • 15
  • 31
0
votes
3 answers

How to increase the size of UITabBarItem in iphone?

I want to increase the Text size of UITabBarItem in my application.It is not visible clearly with its default color and size. I tried this code but give me error -->UITabBar for instant message does not declare method with selector…
0
votes
1 answer

Disable re-initialisation of selected tab when pressed again

I am having trouble with my UITabBarController. In my application I have 4 tabs, each corresponding to their own root view controller. I can change tabs with no problem and the state of the tab is intact when I switch back. However, if I were to…
0
votes
2 answers

Is there any way to show TabBarItem image default as selected?

In my application After login successful my schedule screen opens. It has below 3 TabbarItems with My Schedule option itself. When i come to this screen My schedule items image should be highlighted and other 2 r as normal. How I can achieved this?…
python
  • 1,407
  • 1
  • 15
  • 31
0
votes
2 answers

Mail TabBarItem dismissModalViewControllerAnimated

I'm adding TabBarItem (Email) dynamically. When I finish with my email, I'm calling 'dismissModalViewControllerAnimated' but it's simply dismissing mail view. How do I unload the view controller? in my email view controller I'm doing following: -…
0
votes
1 answer

Adjusting UIITabBar properties?

I am upgrading an iPhone app to Universal, and found that all the UITabBarItems squeezed in the center. I am using the new storyboard feature in Xcode, can I adjust any properties for UITabBarItems or UITabBar itself to control things like the width…
Lim Thye Chean
  • 8,704
  • 9
  • 49
  • 88
0
votes
1 answer

How to customize UITABBAR IOS 5.0?

I have to customize the images in tabbar items for insert an image in my icon, how can I do? I heard from my friend that I should create a new xib and work it to do a new tabbar item customized . Is it true? thanks a lot!
M_Nil
  • 21
  • 1
  • 5
0
votes
1 answer

Using normal or retina image in tabbaritem

Since I can't put up a screenshot of my storyboard, I'll try to explain: I have a tabbar controller that has two view controllers. Each view controller is a navigation controller. I set the image of the first tabbaritem in the storyboard to a…