Questions tagged [uitabcontroller]

UITabController is a common misrepresentation of UITabBarController, a specialized iOS view controller that manages a radio-style selection interface.

UITabController is a common misrepresentation of UITabBarController, a specialized iOS view controller that manages a radio-style selection interface.

Please use the tag instead.

71 questions
0
votes
1 answer

How to properly set up UITabBarController programmatically with separate storyboards

I have three storyboards in my project. There is a main and two separate workflow storyboards. Each storyboard is embedded in its own navigation controller. Since I have broken up the storyboards into workflows I have to programmatically add each…
0
votes
1 answer

How to show a ViewController (not modally) within a UITabViewController

I want to show a ViewController within a UITabController but not display it modally. In the app, there's a home screen with a bunch of buttons that segue to other ViewControllers. The other view controllers are embedded in a navigation…
Jonesie
  • 132
  • 7
0
votes
2 answers

Swift, present a new uiview with tab bar

I am trying to present a new view after click button in a tableview cell. The view can show up but without the tab bar. Is there any solution that showing the view with tab bar? Thanks. Storyboard Screenshot Using segue or progammatically are not…
Janice Zhan
  • 571
  • 1
  • 5
  • 18
0
votes
1 answer

opening UITabController with Segue from UIViewController - how can I show the 3rd tab as the default one?

I have a swift app and on my UIViewController I have a button. In my StoryBoard I attached the button to the UITabController and now when user clicks it - he gets redirected to it. But, by default, he is presented with the 1st tab. Is there a way of…
user3766930
  • 5,629
  • 10
  • 51
  • 104
0
votes
2 answers

Load Data Before Adding ViewControllers to UITabBarController

In my application, once the user logs in from the LoginViewController, he is directed to the ProfileTabBarController. ProfileTabBarController is a subclass of UITabBarController.It consists of three view controllers all of which need a reference to…
W.K.S
  • 9,787
  • 15
  • 75
  • 122
0
votes
3 answers

TabController disappears when using swipe gesture

I have an app with a 3 tabs. I want to swipe right or left to go to another tab. My code: //Swipe Between Tabs let rightSwipe = UISwipeGestureRecognizer(target: self, action: Selector("handleSwipes:")) let leftSwipe =…
Will Zimmer
  • 111
  • 10
0
votes
1 answer

Set background color on MoreNavigationsController Swift 2

I try to set to background color to the "more" tab in may tabController but it wont change.. I have try this self.moreNavigationController.view.backgroundColor = UIColor.redColor()
0
votes
1 answer

locking tab bar items and unlocking via login page

Hey guys having trouble with the UI tab controller, So I have a login screen as my first controller I was wondering if there is a way to lock tab bar items and then unlocking them after login is successful? At the moment I'm using NSDictionary to…
cc_hey
  • 63
  • 1
  • 11
0
votes
3 answers

How to jump to a certain view connected to a Tab Bar Controller from another view?

I have seen a few similar questions but I could not find one that is close enough to the one I am having now. This is what I have now in my storyboard. I have a view with a number of buttons each of which is supposed to linked to one specific view…
d.yuk
  • 809
  • 1
  • 12
  • 30
0
votes
1 answer

iOS: TabController not showing with Navigation Controller

I have an app with the start screen consisting of a table menu main which links to 4 different views, then three options to information pages. Once on any of the main menu options are chosen, the view is shown with TabBar at the bottom of the main…
0
votes
2 answers

Uitabbarcontroller won't respond on touching on the title of the tabbar in iPhone 5

I'm adding a tabbarcontroller to the main view controller. If I touch the title below the image logo of the tabbar it won't respond. If I click the image of the tabbar, it gets a click and selected. This issue is only iPhone 5(4 inch screen). But it…
Nazik
  • 8,696
  • 27
  • 77
  • 123
0
votes
4 answers

get reference of the application window in the succeeding classes IPHONE app

I am adding tab controller on my 4th screen. Up to 4th screen my navigation bar is visible now on the 4th screen when i am adding Tab Controller to the window, navigation bar is getting disappeared... code written in the tabbedController class…
Parmeshwar C
  • 979
  • 1
  • 12
  • 22
0
votes
4 answers

Change the title in a UITabBarController

I've been trying to change the title of my tab with the following code, - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { …
Achintha Gunasekara
  • 1,165
  • 1
  • 15
  • 29
0
votes
1 answer

Creating an initial view before displaying views with UITabController

I am creating an app that uses a UITabController with 5 tabs for navigation. Right now my app loads the first tab as the initial view upon app loading. I want to be able to change that so I have a view that doesn't use my UITabController as the…
user2122206
  • 51
  • 1
  • 1
  • 8
0
votes
1 answer

How do I ensure that the right ViewController is loaded when accepting a file?

EDIT: One question left at bottom - how to ensure I don't call methods before any VC presented by a navigation controller is properly finished being popped. EDIT: An useful tutorial in doing pretty much what I want, but not quite. So I have this…