uitabbarcontroller

Can we change between the UITabbar tabs by using a button in a view?

I have a UITabBar Controller. It have 5 tabs and 5 views corresponding to each of the tab. When we click each tab, the view changes correspondingly. When I am in 3rd view, there is a button in its navigation bar. When I click that button, I want my view and my tab to be changed to the 5th tab and the corresponding view. Is it possible t...

Showing a UIPopoverController from a UITabbarController

Good day! Is it possible to show a UIPopoverController from the UITTabbar? I'm not sure, since the tabbar only wants viewcontrollers, and a UIPopovercontroller is not a UIViewcontroller, but maybe there's another, maybe a bit hacky, way of doing it? I'd really like to do it. ...

App design: UITabBarController within UINavigationController

I have a very specific application design that I'm trying to figure out how to create with iOS 4. Here's how it works: The user selects an installed data set, or triggers a data set download. The user provides a key for decrypting the data set. A tab bar is shown with different search options for looking at the data. There are more se...

Tab Bar Controller + Navigation Controller + Bar Button Item

Within my MainWindow.xib I have a setup like I have here below. I have a Tab Bar Controller with a Navigation Controller within the Tab Bar Controller. I can switch between the different Navigation Controllers and this all works. What I am trying to do now is add a Right Bar Button Item to the Navigation Controller. I can't seem to us...

iphone UITabBarController question

Hello - I have a tab bar in may app that controls 5 different views. To ease memory issues, I would like to release a large image when leaving the tab then reload it when that tab is selected again. Any ideas? I am looking for a delegate method that would activate when a user selects a different tab ...

Custom UITabBarController - using a UIToolBar with UISegmentedcontrol as Tab Bar?

Hey. My customer wants a design-change, but I just can't figure out how to do this! The app currently have a UITabBarController shifting between some UINavigationController's. My customer wants to use a UIToolBar with a UISegmentedControl shifting between the controllers instead. I want to keep the UITabBarController, because that tak...

Possible to show a new UITabBar on a specific view?

I have a Tab Bar-based application with a navigation controller for each tab. One of the tabs is titled "People" (for sake of example) which loads PeopleViewController, which lists people. When a person is pressed, it pushes PersonViewController to view that person. Since there are many tasks associated with each person, I'd like PersonV...

adding a background image to UITabBarController

This is what I have from googling, but evidently it's not what I need: - (void)applicationDidFinishLaunching:(UIApplication *)application { // add the tab bar controller to the window [window addSubview:[tabBarController view]]; // load the image, create a view with the image NSString* dirPath = [[NSBundle mainBundle] bundlePath...

How to disabled the UITabBarController buttons in the Master View Controller in iPhone sdk, objectiveC?

Hi Guys, I got one problem, that is when I tab the UITabBarController buttons, While Loading the data, I am getting exception. How can I get through it. Is there any idea or can we disabled the buttons but it is opposite to programing. ...

iphone TabBarController, how to resize it to height?

Hi to all, any one know how to resize the TabBar? i want make it 80px height for use my custom background and buttons,and make it more beautiful. thank you ...

Objective-C - CoreData and TableView refresh

Hi, I have one problem. I have managed to read/write/delete records in CoreData. But now I am dealing with one problem. In my app delegate I create TabBarController and add some NavigationControllers in it. In one taleView in navController I want delete record and when I switch to another tab I want see that record there. I can do that...

iphone animation stops after one pass

I'm running SDK 3.2.3 I have a simple tab bar controller with three view controllers. Each view controller has an NSArray of images for a simple animation. The animation runs a loop when each of the tabs is pushed however if you go back to tab one after you've pressed another tab, the animation doesn't run again. Any code I could put in ...

iPhone Changing TabBar on-the-fly?

Hi guys, I'm quite new in iPhone Programming, but I'm trying to do my best cause I have some skills in OOP. I'm creating an iPhone app based on a four element Tabbar. I would like to use other functionalities already implemented by a friend of mine in his own iPhone app (a three elements TabBar app). Since I would like my app's users ...

Navigation bar resetting its frame

I have a TabBar which has been created programmatically. In the view controllers of this tab bar I am trying to reduce the size of navigation bar using - "self.navigationController.navigationBar.frame = CGRectMake(0, 20, 320, 30);" For the first time the view controller loads the navigation bar is displayed with the dimensions specified...

Hidden UITabBar

I'm writing an app that has a 5 item TabBar. When launching, I want the app to show the contents of the view for the first item, without showing the Tabbar. I want a hidden button to cover the full screen so that when I tap anywhere the TabBar pops up from the bottom. I then want it to hide itself again after a few seconds. I guess i...

iPhone Tabbar Application -> hide Navigation Bar in "more"-View

Hi, I'm still new to iPhone development. I have an Application with more than five Tab Bar Items. When I click on the "more" Tab I can click on one of the other 4 visible views. But the Navigation Bar of the "more"-view is still there and I want to remove it. I hope it is clear what I mean with it. Thanks for your help! ...

UITabbarController not drawing a view properly

I have a uitabbarcontroller which has one UIViewController added to it. (I reduced to smallest case possible). This viewcontroller calls up a UIView which draws a UIButton via: - (void)drawRect:(CGRect)rect { CGRect brect = CGRectMake(0, 330, 60, 27); CGPoint centern=CGPointMake(CGRectGetMidX(brect), CGRectGetMidY(brect) ); ...

tab bar with navigation controller on each tab item - orientation problems

Hi. i have one tab bar controller with 4 navigation controller connection 4 tab bar items. I made the following changes in the following controllers - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; } All view controllers. All navigation controllers. 1 tabbar controller. ...

[IPhone SDK] Stuck on Two views apps.

I want to create log in app. In log in process I create a UINavigationController to do navigation. After log in, I want to jump to a UITabBarController window. Therefore I added a UINavigationController *navigationController; and set it as a primary view. And UINavigationController *navigationController; to handle stuffs after log in. ...

Portrait mode orientation problem with tabbarcontroller ?

Hi all Using tabbarcontroller, shouldAutorotateToInterfaceOrientation: method not calling for portrait mode while for other three orientation its calling perfectly. Did any have any idea about this ? thanks ...