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

iPad show a view not inside Tabbar

I am developing an iPad application. My application is a UITabBar based application with 5 tabs. Now my requirement is to show a view controller outside these 5 tabs. Explanation: For example I have 5 tabs, A, B, C, D, E. A is selected by…
Irfan DANISH
  • 8,349
  • 12
  • 42
  • 67
1
vote
0 answers

UITabBarItem TItles Jump on Start

I'm customizing the font in the tab bar of my app with the following code: [[UITabBarItem appearance] setTitleTextAttributes: @{UITextAttributeTextColor: [UIColor colorWithWhite:0.55 alpha:1], UITextAttributeFont: [UIFont…
salil
  • 407
  • 3
  • 14
1
vote
1 answer

UITabBarItem delete glossy from image

You can see that house picture with shadow and like prerendered icon. How can I delete this effect?
MaximusAlarmus
  • 147
  • 3
  • 10
1
vote
1 answer

Change Titles of Default Apple UITabBarItems

Hello I am making a sports app and I have three UITabBarItems in a tab bar: Featured, My Teams and Results. I like the default icons for each as the default featured, most viewed and history respectively. What it looks like in the .xib: However…
carloabelli
  • 4,289
  • 3
  • 43
  • 70
1
vote
0 answers

How to add UITabBar with one UITabbarItem work as button?

I want something like looking in image, I want to do this in tabbar application or mainstoryboard. This i did normal single view based application with tabbar item. I try following code also, in this when i click tabbar items particular…
python
  • 1,407
  • 1
  • 15
  • 31
1
vote
1 answer

UITabBarItem appearance for UIControlStateHighlighted

I have this code in my AppDelegate.m file under didFinishLaunchingWithOptions: so that I can have a custom font. [[UITabBarItem appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys: …
Cody Winton
  • 2,989
  • 5
  • 25
  • 48
1
vote
1 answer

connecting addCenterButtonWithImage with viewController in iOS

i am creating a button using the following code: [self addCenterButtonWithImage:[UIImage imageNamed:@"scan.png"] highlightImage:[UIImage imageNamed:@"scan_hover.png"]]; i need to connect this to a method. how do i do that? i am very new to ios…
s5v
  • 495
  • 5
  • 20
1
vote
2 answers

UItabBarItem highlight state image

I'd like to be able to change the highlighted state image on an UITabBarItem when it is selected? Is it possible to subclass and access this? or do I need to roll my own navigation code? -> start edit I didn't articulate what I was looking for…
Paul Solomon
  • 91
  • 2
  • 4
1
vote
1 answer

Showing a overlaying menu when tab bar item is clicked - IOS

Thanks for reading my question! I have a 5-part tabbar which I use for app navigation, the center tab is covered by a UIButton and is slightly larger (much like the instagram app). This works fine. But what I want is the far right tab bar item to…
PaperThick
  • 2,749
  • 4
  • 24
  • 42
1
vote
3 answers

Customizing icon position and title of UITabBarItem's (iphone sdk)

I have a tabBar, and I want to customise the items in the tab bar. I want to prevent the display of the title (easily achieved by setting the title to nil), and reset the icon position to be in the central vertical position. Does anyone have any…
MM.
  • 4,224
  • 5
  • 37
  • 74
1
vote
2 answers

BadgeValue not getting updated on UITabBarItem

I use UITabBar and UITabBarItems with it. I can set badge value for UITabBarItem before assigning tabBarItem to tabBar. But my problem is that I am not able to update the badge value of tabBarItem. Here is code where I am able to set badge value…
Geek
  • 8,280
  • 17
  • 73
  • 137
1
vote
1 answer

How do i add a button on top of a UITabbar

I'm looking for a way to add a button on top of the current layout of a UITabbar. Is it possible to create a custom frame for the UITabbar? any advice would help
user1838169
  • 534
  • 1
  • 6
  • 17
1
vote
1 answer

iOS refresh tab bar items after selected

I have a tab bar that can browse into sub screens. Restart the tab bar item (first screen) when you select the tab item. So basically when you select the first tab bar(see pic above) and select something from the tableview you are directed to the…
user1838169
  • 534
  • 1
  • 6
  • 17
1
vote
1 answer

Start iphone call from tab bar item

i'm sorry for my english. I'm trying to develop an app and in one of my tab bar item i want provide the functionality to start a phone call. I know that is possible to start a call with the following code that i found in another…
Manuel Ragazzini
  • 919
  • 1
  • 10
  • 24
1
vote
2 answers

UITabBarController with UIViewController without tabbaritem

I'm new to iOS development and have such problem, if anybody can help me: My project consist of a view (home view) and a tabbarcontroller with 3 views. How can I make so, that home view will show tabbarcontroller, but without adding tabbar item to…
Oleg
  • 61
  • 1
  • 9