I have an application where I was using buttons on a toolbar to call up the views, but I am switching it over to using a tab bar.
When using the buttons I was using the following code in MainViewController.m to update the values on the page and it was working just fine:
-(IBAction) loadSummaryView:(id) sender {
[self clearView];
[sel...
I want to use UITabBar but without images. I want the text to occupy full control space.
i tried setting image to nil, but text is small and aligned to botom of tabbaritem.
...
Hi I have a tab bar application with 4 tab. Each Tab have view added in NavigationController.
So for example, I am on first tab which have table view, user can tap on row and I will navigate into that view. The new view will come with NEW tabs corresponding to that view.
When user click on back button he will again come to home view ...
Hi,
In my Main Window IB file I have a TabBarController and the first controller is a Navigation Controller. When I push my detail view (after pressing a cell in a table view) I want to push my detail view and display a tool bar instead of the tab bar. The problem is that when I try
tabBar.hidden = visible;
in my detail view contro...
Hi,
How to customize the selected image/icon on the tab bar? Is this possible?
Pls advise. Thanks
...
My application structure is the following:
UITabbarController
UINavigationController
UIViewController
UIViewController
The second View controller is pushed with
[self.navigationController pushViewController:[[DetailController alloc] initWithNibName:@"GenericView" bundle:nil] animated:YES];
When i from my DetailController try to pu...
Hi everyone,
How can I remove a UITabBarItem from a UITabBar?
I haven't tried anything, because I haven't found anything from Google searches or the documentation for UITabBar, UITabBarController, or UITabBarItem.
Thanks in advance! :)
...
Hi all,
I have 2 tabs in my application, when a tab is pressed an RSS feed is loaded and MBProgressHUB shows a loading spinner until the tab has finished loading and the view has appeared.
However if the other tab is pressed whilst the tab is still loading, 2 MBProgressHUB spinners appear and then the app crashes.
Is there anyway to i...
hi,
I have a uiwebview in a navigation bar which is in turn inside a tabbar item. I want to know how to hide the tabbar and navigation bar the moment the user takes off his finger from the screen just like hiding the toolbar in the default photos app in the iPhone.
I should also be able to show the tabbar and the navigation bar when i ...
Partly as a programming exercise, and partly because we may need to include such images in an app some day, I've been trying to figure out how to draw an image like the selected tab in a UITabBar.
The basic operation is simple enough in concept: the icon's alpha is used as a mask to draw the blue gradient image onto the tab. (Though I c...