Tagged Questions
The UITabBarController class implements a specialized iOS view controller that manages a radio-style selection interface.
39
votes
9answers
28k views
Tab bar controller inside a navigation controller, or sharing a navigation root view
I'm trying to implement a UI structured like in the Tweetie app, which behaves as so: the top-level view controller seems to be a navigation controller, whose root view is an "Accounts" table view. ...
31
votes
9answers
43k views
Changing Tint / Background color of UITabBar
The UINavigationBar and UISearchBar both have a tintColor property that allows you to change the tint color (surprising, I know) of both of those items. I want to do the same thing to the UITabBar in ...
25
votes
3answers
32k views
View Controllers: How to switch between views programmatically?
In short: I want to have two fullscreen views, where I can switch between view A and view B. I know I could just use an Tab Bar Controller, but I dont want to. I want to see how this is done by hand, ...
18
votes
7answers
24k views
UISplitViewController in a TabBar ( UITabBarController )?
I am in kind of situation that I need to start with a tab based application and in that I need a split view for one or more tabs. But it seems that split view controller object can not be added to the ...
14
votes
5answers
693 views
Twitter-esque UITabBarController?
I'd like to make an app that uses a UITabBarController that is similar to the one in the Twitter app for iPhone and iPod touch. (Blue light for unread and sliding arrow for switching between content ...
11
votes
1answer
2k views
iPhone: How to switch tabs with an animation?
I'm switching tabs programmatically in a tab bar driven application using UITabBarController.selectedIndex. The problem I'm trying to solve is how to animate the transition between the views. ie.. ...
11
votes
7answers
10k views
Hiding UITabBar when pushing a UIView
I have a UITabBarController where the default view controller is a UINavigationController. I want to be able to hide the UITabBar of the UITabBarController when I push a certain view in the ...
10
votes
3answers
4k views
viewWillAppear, viewDidAppear not being called, not firing
(This is both question and answer since it took quite a bit of digging to find the real answer.)
Symptom: viewWillAppear, viewDidAppear were not being called in my UIViewController.
Cause: ...
10
votes
1answer
2k views
How to preserve iPhone application state before terminating the application?
I have developed an iPhone application with tab bar and navigation controllers.
It is working fine for now.
Now I want the application to save its state before quitting.
Suppose I have 6 tabs and ...
9
votes
4answers
3k views
UITabbarcontroller in IOS5 throws UIViewControllerHierarchyInconsistency exception
I have the following code for the UITabbarcontroller:
NSMutableArray *arr = [[NSMutableArray alloc] init];
tabBarController = [[UITabBarController alloc] init];
FirstViewController *firstview = ...
9
votes
3answers
3k views
last Button of actionsheet does not get clicked
I have used an actionsheet in my project and when it appears it show all buttons but last (4th) button does not responds to my click(only it's half part responds)..
I know the reason it is because i ...
9
votes
1answer
5k views
Showing login view controller before main tab bar controller
I'm creating an iPad app with a tab bar controller that requires login. So on launch, I want to show a LoginViewController and if login is successful, then show the tab bar controller. This is how I ...
9
votes
1answer
2k views
UINavigationController navigation stack problems in Landscape Mode
I have a iPhone application that I am currently converting to a Universal Binary to work with the iPad. I have successfully implemented everything I need in terms of layout so that full landscape ...
8
votes
2answers
247 views
problem in downloading multiple songs in tabBar Application
I have tabbar application, in first tab I have a webView, so when user open the website and going to download some song mp3 format, it push another View which takes the title from the user.
after ...
8
votes
11answers
2k views
UITabBar leaves a white rectangle when hidden
I have been unable to google an acceptable solution to this that can be applied to my project.
My app is a graphing tool that has three tabs; one for the graph itself and the other two are for ...
8
votes
8answers
4k views
How to share a ManagedObjectContext when using UITabBarController
I have an iPhone application that has a MainWindow.xib holding a UITabBarController, which in turn has a UINavigationController and a custom UIViewController subclass in its ViewControllers array. The ...
8
votes
2answers
5k views
hiding TabBar when rotating iPhone device to landscape
So here is what i have:
A UITabBarController that handles different UIViewControllers. In one of the UIViewController i am trying to switch the view being displayed when the device rotates to ...
7
votes
4answers
10k views
iPhone: How to Pass Data Between Several Viewcontrollers in a Tabbar App
I have following problem:
I have built a tabbar application with 4 tabs. I want to pass a object/variable from the first tab controller to the third one and initialize this controller with the ...
7
votes
2answers
3k views
Hide an UITabBar when Orientation change
I have a quite simple question but the answer is not so easy.
I want to hide a UITabBar when my orientation change.
I looked 2 ways :
Frame way
myAppDelegate.tabBarController.tabBar.frame = ...
6
votes
1answer
553 views
Adding a persistent UIView with a UITabBarController
I have an app using a UITabBarController, and I have another view that needs to slide up from behind the tab bar controls, but in front of the tab bar's content. If that's not clear, imagine an ...
6
votes
3answers
406 views
Support landscape mode for HTML5 video in UIWebView in UITabBarController
I've got a UIWebView inside a UINavigationController in a UITabBarController. Sometimes the pages displayed by the UIWebView contains HTML5 video objects.
The video starts playing as expected, but ...
6
votes
2answers
1k views
UIKit doesn't release controller if it is not removed with animation?
In a tab bar based application, If I have one controller pushed in the navigation stack from one tab and then, when another tab is active, I try to pop that controller, it doesn't get released unless ...
6
votes
1answer
5k views
UITabBarController is possible to select the tab via code?
is it UITabBarController possible to select the tab in code?like UINavigationController
we can use popViewController pop back to rootViewController instead of press the back button, so how can this ...
6
votes
4answers
8k views
Iphone: TabView + TableView
I think I'm missing something simple, but I can't figure out exactly what it is.
I'm trying to set up an App with a UITabViewController, and one of the Tabs will have a UITableView and UISearchBar ...
5
votes
1answer
537 views
Objective C: How to switch from one Tab bar to another via program
I have 5 different tabs in my tabbar controller.
My intention is to be able to switch from one tab bar via code. For example I am currently in the 5th tab of the app and when I click on the 'done' ...
5
votes
3answers
419 views
How to limit the number of tabs on a UITabBarController?
I've received a LOT of help from just searching and reading this forum in the last couple years! An amazing resource, even for the experienced developer. So, thanks! Now I have a problem I cannot seem ...
5
votes
1answer
2k views
MPMoviewPlayerController fullscreen playback rotation with underlying UIViewController with portrait mode only (rotation disallowed)
Hallo,
I have a simple application, which does contain UITabBarController with two UIViewControllers. Both UIViewControllers are portrait only (no rotation allowed). One UIViewController's UIView ...
5
votes
2answers
10k views
UITabBarController, MoreNavigationController and the Holy Grail of Device Rotation
UPDATE: See my answer to this question first. This appears to be a bug. A minimal test case has been created and a report has been filed with Apple. (Fixed as of iPhone OS 3.1.)
Here's a puzzler from ...
5
votes
5answers
10k views
Is it possible to hide the tabbar when a button is pressed to allow a full screen view of the content?
I have a UITabBar in the detail view of my navigation based application. I am storing text and images in a tableview and would like the user to be able to tap on a cell to hide the navigation ...
5
votes
3answers
18k views
UITabBarController: switch to a different view controller programmatically
In my iPhone app, to restore previously viewed tab, on launch I set the setSelectedIndex: (also tried setSelectedViewController: as per docs but to no avail)
This works on iPhone OS 3.0 - however on ...
5
votes
3answers
9k views
Generating icons for iPhone UITabBar
I’ve been busy working on the graphics for my iPhone application. I started working on generating icons for my UITabBar and ran into lots of problems. How do you create these icons?
I created this ...
4
votes
3answers
316 views
TabBarController and SplitViewController
i want my splitviewController to be displayed in within a TabBarController. Unfortunately, I firstly decided to just have a SplitViewController and chose apple's template. Now i am in the inconvenient ...
4
votes
1answer
491 views
Tab bar interface orientation issue
I have added a custom tab bar. With tabs including more tab.
My First tab supports only portrait mode.
Second tab has all orientations.
Issue happens when selecting the second tab and keep it in ...
4
votes
3answers
783 views
How In-Call status bar impacts UIViewController's view size ? (and how to handle it properly)
I'm trying to understand how the view associated to a UITabBarController, UINavigationController or UIViewController reacts when the in-call status bar is toggled.
My trouble is that they seem to ...
4
votes
3answers
1k views
Switching to a TabBar tab view programmatically?
Let's say I have a UIButton in one tab view in my iPhone app, and I want to have it open a different tab in the tab bar of the TabBarController. How would I write the code to do this?
I'm assuming ...
4
votes
1answer
899 views
Partial Curl Modal Transition Style While Preserving Tool/Tab Bar
Is there a way to present a modal view controller that doesn't cover the tab bar of a UITabBarController?
Specifically I want to use the UIModalTransitionStylePartialCurl, but preserve the bottom ...
4
votes
3answers
861 views
viewWillAppear: method doesn't seem to respond while using tab bar and navigation controllers together
I am using Tab bar + navigation based application and I have 4 tab bars. When I navigate from one view controller to another view controller, the viewWillAppear: method doesn't seem to respond and I ...
4
votes
1answer
1k views
UIToolBar on top of UITabBar?
When in the Camera Roll section of the Photos app, you can click the top right button to edit the photos. This replaces the bottom tab bar with three new buttons which are in a UIToolBar.
I would ...
4
votes
1answer
784 views
Customized NavigationBar not displaying correctly after return to Tab
I've added a few components to the NavigationBar in an app I'm creating. The height of the bar changes dynamically, like in Safari for the iPhone, when you click on the URL field. I have all of the ...
4
votes
4answers
5k views
How to conform to UITabBarControllerDelegate
I have a tabbar based application and do the following to get a reference to the application delegate:
MyAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
Which then gives ...
4
votes
4answers
2k views
How to: Save order of tabs when customizing tabs in UITabBarController
I am having problems finding any other information than the docs for how to save the tab order for my UITabBarController, so that the user's customization is saved for next app launch. I have searched ...
4
votes
6answers
3k views
Iphone: Is it possible to hide the TabBar?
I have an application that uses a TabBarController to switch between modes. When in a certain mode, I'd like to hide the tab bar until the steps of that mode have been completed. Note that I'm not ...
4
votes
3answers
5k views
Landscape orientation for UITabBarController?
The UITabBarController does not allow landscape orientation. So I used a subclass of UITabBarContoller (called RotatingTabBarController). Its sole purpose it to allow rotation by returning YES to ...
4
votes
1answer
505 views
UITabBarController - more than 20 views
I am using a tab bar (UITabBarController) on my app and I wish to have more than 20 different views to choose from.
If there are more than 5, "More" menu appears. I can access any of my views from ...
4
votes
10answers
3k views
Upgrade to iPhone 3.0 sdk and now simulator shows blank screen
I have an iPhone app that uses an UITabBarController, which contains two UINavigationControllers, each of which in turn contains one or more TableViewControllers (actually, customized ...
4
votes
4answers
24k views
iPhone Dev: Reload data of a table view from a child controller and another controller in a TabBar
I'm implementing a notes manager application which has a tableView in a tabBar where the main information of its notes is displayed. When accessing to one note, you can edit its properties. In one ...
4
votes
6answers
10k views
tabBarController and navigationControllers in landscape mode, episode II
I have a UITabBarController, and each tab handles a different UIViewController that pushes on the stack new controllers as needed. In two of these tabs I need, when a specific controller is reached, ...
4
votes
2answers
3k views
self.tabBarItem.title not working?
In my iPhone application, I have a tab bar. This tab bar holds a UINavigationController. I have:
In Interface Builder set the tab item title to 'Create New'
In the UINavigation controller I have ...
4
votes
3answers
3k views
UITabBarController and rotation
I'm having a real issue with UITabBarController.
The outcome I'm after is the following:
1) in portrait mode, a simple tab bar based application (with navigation bars) nothing too fancy.
2) in ...
3
votes
3answers
248 views
Making a 'hole' in a UITabBarController or UINavigationController?
How would I 'punch a hole' in a tab bar app, whereby a tab-bar based app can show a view behind the uinavigationcontrollers that are in each tab? (this punch could be optionally turned off).
My ...