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...
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.
...
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...
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...
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
...
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...
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...
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...
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.
...
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
...
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...
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 ...
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 ...
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...
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...
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!
...
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) );
...
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.
...
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.
...
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
...