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

XCode: Tab Bar Item image is pixelated

I am using custom images for tab bar icons and they are showing up pixelated and I can't figure out why. The image is 32x32 and 300ppi. I've tried it on 72 and 150ppi and they are all pixelated. Anyone have a solution? Thanks, Adam
Adam
  • 147
  • 4
  • 11
0
votes
2 answers

How to achieve iOS 7 Tab bar icon design for iOS5/6

I want the tab bar of my App for iOS5/6 look just like on iOS7 without using Xcode 5. Is it possible to remove this gloss/shadow effect? I tried the famous -setFinishedSelectedImage:withFinishedUnselectedImage: code solution. But seems not to work…
caribbean
  • 748
  • 1
  • 9
  • 29
0
votes
1 answer

Action performed by UIViewController in UITabBar and Switched Back to Original View

In have a UITabBarController with 3 view controller subviews. The default subview for the app is viewOne (with viewControllerOne). The other two are viewTwo and viewThree with the ordering in the UITabBar as expected. My objective is to have an…
Mat Kelly
  • 2,327
  • 7
  • 29
  • 51
0
votes
1 answer

Setting UITabBarIcon tint when unselected

I am trying to set the icons of a UITabBarItem, but it is not working. By the way, I'm using Xcode 5 Beta for this project. @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary…
i_duhh_bomb
  • 300
  • 1
  • 10
0
votes
2 answers

How to disable title of bar item in UITabBar (iOS)

I am developing iPhone Application.I want to disable title of UITabbar.I know that title is the inbuilt property of tabBar Item,But is there any way to disable title and show only image. I am also attaching screenshot for reference. I don't want…
Ponting
  • 2,248
  • 8
  • 33
  • 61
0
votes
1 answer

TabBar changes style after app-Introduction

I've the following problem: The design of my tabBar is set in AppDelegate.m: self.tabBarController = (UITabBarController*)self.window.rootViewController; UITabBar *tabBar = self.tabBarController.tabBar; …
user2650439
  • 207
  • 1
  • 3
  • 8
0
votes
1 answer

iOS: move and resize UITabbar icons programmatically

I have programmatically set up a UITabBarController with 3 views, but the icons in the UITabBar aren't looking like what I wanted them to. Is there a way to programmatically resize/move them?
Fabio
  • 3,015
  • 2
  • 29
  • 49
0
votes
1 answer

InitWithCoder called multiple times

I defined a custom initWithCoder method because I'm trying to make custom tool bar items. I have 5 view controllers in my storyboard, each with a custom class. They are all child classes of the initial view controller's class. The main problem is…
user1626438
  • 133
  • 5
  • 14
0
votes
1 answer

How to make UITabBarItem selection like UIButton selection

I have a UITabBar where the user is able to select one of five items, when one of the items has been selected I then load a subview. The only thing is, is that the tabBar item is staying selected when I would like it to select (turn blue as the user…
HurkNburkS
  • 5,492
  • 19
  • 100
  • 183
0
votes
1 answer

How to change UITabBarItem position?

I need to change UITabBarItem's image and text position when it's highlighted. Is it possible?
Timur Bernikovich
  • 5,660
  • 4
  • 45
  • 58
0
votes
1 answer

Word Wrapping UITabBarItem's Label (Objective C)

I've looked into TitleTextAttributes and tried using NSLineBreakMode, but I get errors no matter what I try. Surely someone has figured out how to simply word wrap the label of a tabbaritem - Thanks in advance!
Ryan
  • 195
  • 2
  • 14
0
votes
1 answer

Create a custom UIToolBarItem that exceeds UIToolBar height

I would like to achieve something like the link below (middle bar). I am wondering, is pure photoshop job, or you can set the middle item to has greater height (or width) from the actual toolbar? http://www.mobilebricks.com/ios/altoolbar
OutOfBoundsException
  • 756
  • 1
  • 11
  • 26
0
votes
2 answers

TabBarController and NavigationController

I am making an application but I'm still a beginner and I'm trying to get used to the RootViewController and how it should be set. At the beginning my application launches, I want there to be a View which is not in my tabBarController (which is set…
0
votes
1 answer

UITabBar item did select is not working

i have two tab bar items with two different table view with navigation controllers. by clicking on the tab1--- table1 is opening...Good. but when i did select on table1 it goes to the another view (table did select view)....every thing is good. but…
0
votes
1 answer

Remove gradient/Gloss from UITabBarItem

I am customizing the UITabBar. I used my custom image in UITabBarItem. The problem is whether there is a gradient/gloss on the item. I checked Apple's app Store didn't had any of this glossy effect on its UITabBarItem. How can i remove gradient from…
Hassy
  • 5,068
  • 5
  • 38
  • 63