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
4
votes
1 answer

How to disable tabs in UITabBarController?

Before I updated to Swift 3, this worked perfectly (besides isEnabled was just enabled). This code is in my UITabBarController ViewDidLoad function. The if is never met so therefore the items are never set to true. How do I access the items as I…
Torewin
  • 887
  • 8
  • 22
4
votes
4 answers

Tab bar with multiple tabs using only one view controller

I was not able to find an answer to my problem on SO, please link me if an answer already exists somewhere! My problem seems pretty common- i have a tableview embedded in a nav controller and i want a tab bar with 3 items, where the 3 items change…
Gman9855
  • 477
  • 5
  • 17
3
votes
1 answer

What are the available UITabBarController tab icons?

How can i see all the icons available from the iOS SDK and how can i set them to my UITabBarController tabs ?
Alex
  • 10,869
  • 28
  • 93
  • 165
3
votes
1 answer

Difference between Tab Controller and Default Tab Controller

What is the difference between a Tab Controller and Default Tab Controller? Can you please explain when to use Default Tab Controller and when to use Tab Controller ?
3
votes
1 answer

Add UINavigationController to UITabBarController without Tab Bar showing up in all views

I currently have Tab Bar Controller with a Navigation Controller, as described here. As a result, the tab bar shows below each view. Is there a way to hide the tab bar on consecutive screens, which are not directly connected to the tab bar…
user2560886
  • 1,910
  • 2
  • 14
  • 20
3
votes
1 answer

iOS - tab bar turns transparent after dismissing view controller

I have encountered a strange behaviour when using the tab bar controller in iOS. I have such a controller with 3 tabs, as can be seen on the following image: The following problem only occurs on a physical device, not on the simulator: When I…
bweber
  • 3,772
  • 3
  • 32
  • 57
2
votes
1 answer

Manually add more tabs to UITabController with Storyboard and Monotouch

I am currently using the new iOS 5 Storyboard approach to creating my Tabbed Application with Monotouch. I have developed two of my tab views in Xcode with Storyboard and linked them appropriately to the Tab Bar Controller. I also want to develop…
robertmiles3
  • 899
  • 10
  • 20
2
votes
1 answer

UISplitViewController with MonoTouch.Dialog

Using a UISplitViewController with MonoTouch.Dialog (DialogViewController) I am having issues when using the "back" button of the navigation controller: https://i.stack.imgur.com/LeykT.png There is a big animation on the detail side vertically from…
t9mike
  • 1,546
  • 2
  • 19
  • 31
2
votes
1 answer

How create an arrow-tab-like design in flutter

anyone who knows how to do a design like this when clicking the first arrow, one screen appears and after completing that screen the tab color changes to green , then clicking on the second arrow second screen appears , then after clicking on third…
2
votes
0 answers

Swift Key window subview disappearing

I am experiencing some weird behavior with a button I am trying to implement in my app. I have a 'compose post' button that I am adding to the key window of the app. I want to create the button and hide it in certain scenarios like when the…
2
votes
2 answers

Flutter TabBarView Children Unable to Render Due to Unbounded Height

I am trying to replicate the following design: https://lh3.googleusercontent.com/pOGNNz2MYFZg24jd7Yf55mLXFRWIYMCNQSUshnPX6P2iYsMQn8bkezdp8tQD-Y9GcD0=w2560-h1370 I don't seem to understand why the child widgets within my TabBarView are causing an…
RamanSB
  • 1,162
  • 9
  • 26
2
votes
1 answer

Using 'pushViewController' animation when switching between tabs in UITabController

I am having trouble trying to make the UITabBarViewController perform the same animation that UINavigationController has when it performs pushViewController. - (BOOL)tabBarController:(UITabBarController *)tabBarController…
sonics876
  • 947
  • 2
  • 13
  • 31
2
votes
3 answers

How do you really hide and show a tab bar when tapping on part of your view? (no buttons but any location of the screen)

override func viewDidLoad() { let tap = UITapGestureRecognizer(target: self, action: #selector(touchHandled)) view.addGestureRecognizer(tap) } @objc func touchHandled() { tabBarController?.hideTabBarAnimated(hide:…
2
votes
1 answer

UITabBarController in xamarin.ios without using StoryBoard

In continue of my question in this post, I want to post a complete question which will be a question lots of xamarin.ios developers. My request is having TabBar in ALL UIViewControllers. So, as I know, there are two ways to realize it. First…
2
votes
1 answer

How do I stretch the view when tab is hidden

I'm using the auto layout via the storyboard. override func viewWillAppear(animated: Bool) { //hide bottom bar self.tabBarController?.tabBar.hidden = true } // postload func override func viewWillDisappear(animated: Bool) { …
Shawn Baek
  • 1,928
  • 3
  • 20
  • 34
1
2 3 4 5