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
2
votes
2 answers

how to add slide menu inside tabbar controller in ios?

I have a requirement where i need to add a slide menu inside a tabbed content is it possible to add a slide menu inside a UITabBarController and parent of this UITabBarController is a UINavigationController ?
Äñäñd Ayan
  • 79
  • 5
  • 10
2
votes
1 answer

UITab freeze in iOS

I am developing an iOS 5.1 application on Xcode 4.2. I have a uitablcontroller with different tabs. My problem is when a tab is clicked , the application 'freezes' for few seconds and does all the codes it's meant to do, but it does not load the…
mhmdshawqi
  • 349
  • 3
  • 9
1
vote
3 answers

How to set the "more" tab bar's edit view's navigation bar black?

I am trying to set all my tab bar's navigation bars UIBarStyleBlack. I could also achieve this for the "more" tab bar with this: tabBarController.moreNavigationController.navigationBar.barStyle = UIBarStyleBlack; The problem is that when you click…
Rivera
  • 10,792
  • 3
  • 58
  • 102
1
vote
1 answer

Flutter Layout error: Using webview in tabbed content

Im new to flutter and watched 2 tutorials, one on creating a tabbed app and one on webview. unfortunately I am unable to make them work together. I get a layout error. Here is my code: import 'dart:io'; import…
1
vote
1 answer

Controlling a nested UITabController

I have two UITabControllers. One is controllable from UIViewControllers that are nested within the scope of the first UITabController (lower in the hierarchy). When I change the selectedIndex of the one lower in the hierarchy it also change the…
Anters Bear
  • 1,816
  • 1
  • 15
  • 41
1
vote
1 answer

How to use custom NavigationBar in ios TabBarController

I'm using a TabController which has a Navigation Controller as it's root and all works fine thus far except i would like to show the NavigationBar of the child viewcontrollers within the tab bar but for now just the tabcontroller's Navigation Bar…
1
vote
2 answers

Swift View Layout below tabbar

class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { self.window = UIWindow(frame:…
lufthansa747
  • 1,923
  • 3
  • 26
  • 39
1
vote
1 answer

Swift passing data between Nav and Tab Controller

A viewcontrollerB is the root view of nav controller and first view of tab view controller at same time. How to pass a data from initial viewA through nav and tab controller to ViewB ? Thanks Storyboard
Janice Zhan
  • 571
  • 1
  • 5
  • 18
1
vote
1 answer

iPhone SDK Problem: load TableView whitin TabBarControlled Views

I've a problem and cannot find a solution to the whole day now. I'm new to iPhone SDK, so I guess I'm just missing something. My app consists of a TabbedNavigation, having three ViewControllers. Everything works as expected. Now I want to open a new…
pawi
  • 123
  • 1
  • 5
1
vote
4 answers

Call another class in IOS

I'm new on IOS platform and after study a little about how does it works, i had one doubt about how to call a new class/view and overlay the current view when a button is pressed. In android i do: Intent intent = new Intent(a.class,…
1
vote
0 answers

How do I add a tab on a viewcontroller that doesnt have an icon on its own in xcode?

How do I add a tab on a viewcontroller that doesnt have a tab icon on its own ? I created a tab controller which is linked to major view controllers that has their own icon. but what about minor controllers? i want minor controllers to have a tab…
diceyyyy
  • 47
  • 5
1
vote
1 answer

Missing Badges under iOS7

I have custom tab controller graphics that did display badges on them. Under iOS7, they no longer display. Are badges handled differently under iOS7? // loading the custom icons for first tab UITabBarItem *tabicon1 = [[UITabBarItem alloc]…
Grymjack
  • 529
  • 1
  • 10
  • 21
1
vote
1 answer

My tab controller is not visible in UIViewController

I'm new at iOS programming and I'm try to add a tab controller to a certain UIViewController. I embedded the View Controller with a tab controller using the relationship View Controller. Then I added a second view controller and added the…
Michael Nana
  • 1,969
  • 4
  • 24
  • 36
1
vote
1 answer

Present a viewcontroller inside a navigationcontroller from another tab in tabbed application

I have a tabbed application and each tab has a navigation controller with table views in it. In one of the view from a tab, I want to present the first view controller of another tab. My tabViewController.viewControllers has an array of navigation…
SunnyPenguin
  • 137
  • 4
  • 15
1
vote
1 answer

How to detect that a ViewController is activated?

This is my second day of learning ios programming with xcode - so this should be an easy quwstion - just that I can't figure it out. I am using StoryBoards and an UITabViewController with 3 tab items. On the second tab I would like to start the…
bandreas
  • 869
  • 1
  • 8
  • 25