Tagged Questions
0
votes
0answers
9 views
Q: How to rotate a TabBarController programmatically created
I created a TabBarController programmatically for a login app like this:
AppDelegate.h
@property (strong, nonatomic) UITabBarController *tabBarController;
-(void)createTabBarController;
...
0
votes
1answer
20 views
How can i refresh my other view controllers from an action of slider
I have a UITabBar Controller having three view controller. I am trying to refresh my two view controller which are map view controller and tableview controller; from third view controller with an ...
-3
votes
1answer
37 views
Any way to use common variable for all tab in tabbarcontroller?
i am creating 4 tab in tabbarcontroller,i want use common variable like name in all tabs how to do that
Thanks
0
votes
0answers
37 views
iOS: How to put UIButton below/up to UITabBar Controller?
I am trying to put a UIButton below/UP to the UITabBarController.
Original Screen
Wants the make it either of below
I tried the below code and others but no success. please help
[window ...
0
votes
2answers
44 views
How to create scrollable UITabBarController in iPhone?
I want to show 10 views on UITabBar with scrolling functionality. For this I am using UITabBar on a UIScrollView. But I am not able to show different different views after click on a item of UITabBar. ...
0
votes
1answer
63 views
can't make tab bar hidden when using container views
My app uses view controllers each containing 2 container views as intermediaries between a tab bar controller and navigation controllers. This is for the purpose of managing a menu that is embedded in ...
0
votes
0answers
21 views
How to code different selection backgrounds for each icon for IOS
I'm currently designing an APP for the iphone and am searching for a way to create different selection images for each icon. I've found how to just create a single selection image for the entire ...
-2
votes
1answer
23 views
What is the maximum number of view controllers that can be part of a UITabBarController?
Please answer this question.
I know that it is pretty trivial, but I do not possess sufficient knowledge to be able to answer it myself, that is why I am asking the readers of this question.
0
votes
0answers
24 views
iOS tabbar centerButton action
I implemented my custom button for a tabbar with this code:
- (void)addCenterButtonWithImage:(UIImage *)buttonImage highlightImage:(UIImage *)highlightImage target:(id)target action:(SEL)action
{
...
0
votes
1answer
21 views
space underneath custom tab bar
I am adding custom tab bar images to a UITabBar in xcode, but the images dont sit flush against the bottom of the screen.
I am using
UIImage *selectedImage0 = [UIImage ...
0
votes
4answers
39 views
Change title of navbar based on which tab is selected?
I have an iOS app where there is a navigation controller as the root controller but at one part there is a tab bar to select between views in one of the nav bars. It looks similar to the iTunes app ...
0
votes
1answer
36 views
Replacing UITabbar items with buttons - Apple Accepts/Rejects
In my app, i am making UITabBarController as root view controller. But i am hiding all the UITabbar items using following code to display custom buttons on the tab bar.
for(UIView *view in ...
0
votes
1answer
24 views
Passing model data to tab bar view controller as a detail controller in iOS
I'm developing a Core Data Master-Detail application. The detail view is a tabbed interface with each tab displaying different aspects of the model object.
Therefore, I have a:
Master view ...
0
votes
1answer
25 views
Tab bar issue for iPad app
I'd like to display what looks like a vertical tab bar at left side as in, for example, Twitter app for iPad:
Is that a UISplitViewController with a UITabBar within its left side?
Is it a tab bar ...
0
votes
2answers
23 views
changing tabbar images when tabbar not root view
I am looking at changing the graphics on a tabbar, such as
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UITabBarController ...
0
votes
1answer
35 views
App crash on making UITabbar select to nil in iOS
I dont want tab items selected by default. I want them to be selected only when i click on that tab item. So i am making the selected view controller to nil.
...
0
votes
2answers
32 views
One instance of navigation bar in every tab
I've been struggling this problem for several days. In my application I have tab bar controller with UINavigationViewControllers inside. I want every navigation bar in every navigation controller to ...
0
votes
1answer
37 views
How to share the ViewController class in TabBar with NavigationController?
Since I am a newbie in iPhone development, I need some advice.
My app has two tabs which
first tab to show tables of items that has lat/long and url.
When I select an item in the tables, then show ...
0
votes
1answer
32 views
(UITabBarController *)self.window.rootViewController;
I've seen this declaration in a tutorial where someone is changing the appearance of the UITabBarController.
UITabBarController *tabBarController = (UITabBarController ...
1
vote
2answers
52 views
Connecting navigation controller through button on Storyboard crashes app
I am using a Storyboard for the first time.
Here is a picture:
My app is a TabBar application. From the 'Main' screen I have a settings button, which I would like to connect to the ...
0
votes
2answers
22 views
How to choose witch UIViewController to show when i click on UITabBarItem?
I m using StoryBoard, and i have UITabBarController, and an UITabBarItem (User Profile), i want at the moment when i click on UITabBarItem (User Profile) to check if the user is connected or not ...
0
votes
2answers
32 views
tab bar in ios that opens a picker, not a view
I have a tab bar application with several tabs, and all that is no problem. Each tab goes to a new page and opens a new view.
What I want to do is add a tab that does NOT open up a new page or a new ...
-1
votes
2answers
35 views
Can I detect taps on a controller's tab without being its delegate? [closed]
I've written a container controller which I'm using inside a tab bar controller. The container manages a stack of controllers like a UINavigationController, and I'd like it to behave the same way as ...
1
vote
2answers
42 views
UITabBarController not changing the title color after setSelectedIndex
Actually, the problem is in the question title. The thing is that I need to change the active tab of a UITabBarController in my application. I do it by following:
[self.tabBarController ...
0
votes
0answers
48 views
How to move from a View to a Tab Bar Controller in iOS?
I'm very new to iOS and I have an issue.
I have a view with a login form and a button.
I want to make it so that once the button is pressed, the login is processed and if successful it loads the ...
0
votes
1answer
57 views
Custom delegation to pass data between tab bar view in iOS not working
I am facing a problem related to delegation.I have 2 tabView. In first tabview i have 2 textfield and a button(to trigger the delegate method) and in the second tabview i have 2 label to display the ...
1
vote
1answer
26 views
Is there a way to remove of add a tab to a tab bar dynamically while using the app in iOS?
I have a tab bar with 5 tabs on it in my app. The final tab shows some ads. I want to add a setting where a user can turn that 5th tab "off".... so essentially I just remove it from the screen.
Note ...
0
votes
1answer
34 views
Clarification on prepareforsegue and presentModalViewController while using Storyboard
I have an app with a LoginViewController as the initial view.
Note: So in appDelegate.m, self.window.rootViewController is NOT the TabBarController.
After Auth, I present the main part of the app, ...
1
vote
1answer
29 views
Passing managedobjectContext to tabbarcontroller with navigation controllers in modal view
For a small app, I have a login screen. On Auth, A tab bar controller with two views (one with navigation controller) is presented. I am following this tutorial. It uses core data. ...
-3
votes
2answers
31 views
I need help in creating a tabbar controller using xib [closed]
I'm developing an application, for which I need a tab bar controller in my "2nd view controller".
i.e for eg, when I click an UIButton I need this tabbar to appear in the next view.
As I searched, ...
0
votes
0answers
30 views
NavigationBar doesn't change when pushing to navigationController
I have encountered some weird behaviour in my app. It's rather complicated so allow me to explain the setup:
I have a tabBarController which holds different navigationControllers. Each of these ...
0
votes
1answer
14 views
Present a specific tab in a tabbar modally with storyboard
I have a login screen, and after auth, I have a tab bar controller with navigation controllers for each views, which I want to present.
Here is the code I use
UIStoryboard *storyboard = ...
0
votes
1answer
25 views
UIViewController hanging after viewWillAppear
I have a simple workflow for my iOS 6 app :
UINavigationController -> loadingVC -(push)-> UITabBarController -> UIViewController(s)
I call the push via performSegueWithIdentifier:, called ...
0
votes
1answer
56 views
Add a Tab Bar Controller Programmatically to current App Flow
I want to add a tab Bar Controller to my current App Flow. Currently I have a page with a button which on clicking opens a new viewcontroller with a web view where the user logs in and after login I ...
0
votes
1answer
28 views
How do i add a button on top of a UITabbar
I'm looking for a way to add a button on top of the current layout of a UITabbar.
Is it possible to create a custom frame for the UITabbar?
any advice would help
1
vote
2answers
106 views
Is there an iOS sliding menu controller working like UITabBarController?
I found some iOS sliding menu controllers (like Path 2.0 , Facebook iOS), such as ViewDeck https://github.com/Inferis/ViewDeck, ECSlidingViewController ...
0
votes
0answers
34 views
Customise UISegmentedControl as UITabBarController
I'm trying to create a UISegmentedControl that has same the function as UITabBarController.
However, I already have a UITabBarController in my view controller and it will be awkward if I have 2 tab ...
1
vote
1answer
41 views
Tabbar cannot clickable after iPhone 5 optimize
I am optimizing my screen from iphone 4 to iphone 5. However, Once I have optimized, my tabbar stopped working. As it can be seen in the first image, once I clicked on world average, it took me, ...
0
votes
2answers
39 views
Change the frame of a ViewController set in AppDelegate
I am using a controller to replace the traditional UITabBarController.
The one I am using is AKTabBarController.
Now All is working, but there is one stage where I want to remove it using a Gesture.
...
0
votes
0answers
23 views
Reuse DetailViewController barButtonItem setter in several SplitViews
The video with the problem: http://vimeo.com/65453825 (will be ready in 44 minutes from now)
I have a TabBarController and on each tab I gave a SplitView (storyboard attached).
I have created custom ...
0
votes
2answers
59 views
Which is the best approach for creating custom tab bar controller?
I am working on application that is more likely a tabBarController application. But I can not use the tabBarController because I need a custom tab handler at the bottom also I need custom space ...
1
vote
1answer
92 views
iOS possible for draggable hide button on UITabbar?
Is it possible to add a custom button ontop of a tabbar which can be used to hide and show the tabbar?
I can hide the tabbar but i want to be able to do it from the tabbar itself (button on it)
...
0
votes
1answer
32 views
UITabBarController switch tab is slow at first time
I am working on an ipad project whose UITabBarController (it's also the root) has 5 tabs.
The second tab is a tableview where there are quite rich UI elements.
The problem is that everytime I ...
0
votes
1answer
57 views
Set image for tab bar IOS
I'm experiencing issue when trying to set png image for tab bar item icon for my iOS application. If I'm creating png image (with transparent background) and setting it, everything works as expected, ...
0
votes
1answer
60 views
iOS refresh tab bar items after selected
I have a tab bar that can browse into sub screens.
Restart the tab bar item (first screen) when you select the tab item.
So basically when you select the first tab bar(see pic above) and select ...
0
votes
1answer
33 views
Dismiss modal view and call initial view controller
this is my problem.
I have a tab bar, in the last tab I load a modal view. When I dismiss the modal view the app returns in the last tab of the tab bar. But instead I'd like that the app returns on ...
1
vote
3answers
79 views
UIScrollView is cut off from UITabBarController
I have a UIScrollView that I place inside of a view (interface builder document .xib/.m/.h), however the lower portion of the UIScrollView is getting clipped and not showing the lower half of itself ...
-1
votes
0answers
66 views
How to set the visible view controller in navigation controller switching between tab bar items of Tab bar controller ?
My sample application has a UITabBarController with five tabs bar items each of which invokes a navigation controller.
Initially the first tab bar item is selected, when another tab bar item is ...
0
votes
1answer
23 views
Setting badge on pushed UITabBarController
When a user clicks on a button, I create a UITabBarController with two viewcontrollers attached to it.
I then push the TabBarController onto my navigationController stack and it displays without ...
0
votes
1answer
18 views
TabBarController will hide
Is there a protocol for TabBarController "will hide" and "will show" actions?
There seems to be none in UITabBarControllerDelegate,UITabBarDelegate
I am asking this because I want to do something when ...



