Questions tagged [uitabview]

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

UITabView is a common misrepresentation of UITabBarController, which is a specialized iOS view controller that manages a radio-style selection interface. The view that contains the tab images and text is not directly exposed by the iOS SDK, instead you define the controllers, text, and images associated with each tab option and the system takes care of its display and touch responses.

Please use the tag when referring to the user interface of a tab-based view controller container on iOS.

76 questions
0
votes
0 answers

NavBar not showing up in second and third viewcontroller

I am trying to add Navigation bar to my tabbar view controllers.But, it is showing up in firstViewController but not in the other two views. Any reason why this is not working? self.firstVC = [[FirstViewController alloc]…
Sage
  • 189
  • 1
  • 1
  • 9
0
votes
2 answers

Memory warning doesn't work properly

I'm practicing on how TabViewcontroller works. Now I have 2 subclasses of UIViewcontroller. One is HypnosisViewController , the other is TimeViewController. What I wanted to check is how -(void)viewDidLoad works when IOS simulator gets memory…
Toshi
  • 6,012
  • 8
  • 35
  • 58
0
votes
1 answer

How i put the android tabactivity at the bottom of activity?

On default the tabactivity is in the top of the activity How i put the android tabactivity at the bottom of activity ? (like ios tabview) thanks a lot by
0
votes
3 answers

Tab Bar Controller - how to reselect a selected tab

I started with the default Tabbed Application, added some tabs in the Storyboards with their own viewcontrollers, how can I know when a tab that's already selected, get's touched again? Tab 1 goes to a webview that has loaded other pages, when the…
Mark
  • 555
  • 6
  • 17
0
votes
1 answer

Changing the resolution / blue tint of tab view controller tabs

It seems the default iPhone 5 tab view controller's tab images are 30x30 pixels and just have a blue tint to them. Is there anyway to increase the resolution and change the tint color apart from just using my own view controller and making buttons…
jake9115
  • 3,964
  • 12
  • 49
  • 78
0
votes
2 answers

Displaying a certain key into a certain tab bar

I'm new to objective-c programming so I'm not sure about the coding. Basically, I have an NSDictionary called lessonDict containing all my lesson modules. The keys in my NSDictionary are the days of the lessons, like Monday, Tuesday, Wednesday... I…
gum-drops
  • 3
  • 5
0
votes
1 answer

How to design UISegmentedControl view swapping similar to the Facebook 3.0 app?

Probably easiest to explain by example: In the Facebook 3.0 app, if you click on a friend, it shows "Wall | Info | Photos" in a UISegmentedControl, which acts like a UITabViewController. If you then click on, say, a photo, it pushes a sub view onto…
mwalsher
  • 2,790
  • 2
  • 33
  • 41
0
votes
2 answers

How to get the Xcode TabView default black bar in bottom?

In a new tabbed app application when two more views are added, views which are created by default has a black bar on bottom and the two views that are manually created doesn't have that black bar ? How to enable that black bar ?
f4r4
  • 563
  • 8
  • 19
0
votes
3 answers

TabView and close button problem

I try to do the same thing as Davs Rants Example : http://blog.davglass.com/files/yui/tab3/ But I must forget something... I have this error : Node was not found" code: "8 [Break on this error] this._tabParent.removeChild( tab.get(ELEMENT)…
Fabien Barbier
  • 1,514
  • 4
  • 28
  • 41
0
votes
1 answer

xcode: creating a viewController for a tab item in StoryBoard results in a black screen

i have a tab bar controller in my storyboard. I have added a third view controller created a tab link for it (segue). When I run the app the third tab shows with all its objects perfectly. Next I create a ThirdViewController.m and .h file .In…
pnizzle
  • 6,243
  • 4
  • 52
  • 81
0
votes
1 answer

Which view should i use to display large photos from a TabBar application

Hi i have used Tab Bar Application with 4 tabs and i have set navigation controller from IB. Now for my photo view, when user choose photo from list, it should display large photo. For larger photo, which view should i use?. If i will self.view and…
crazyDev
0
votes
2 answers

UITabBars and UITableViews. Keeping the Tab bar on screen when a table cell is clicked

I'm trying to get a GUI with a UITabBar and UITableViews set up. I've got a UITabView that is programmatically created. One of the Tabs displays a UITableView that is also programmatically created. This UITableView then displays other views when…
Alex Zavatone
  • 4,106
  • 36
  • 54
-1
votes
2 answers

How to initialise a VC or Class iOS, ObjectiveC

When a button is clicked at FirstVC, it will pass data and trigger SecondVC using NSNotificationCenter During initial launch of the app, because SecondVC has not been initialize yet, so data cannot be passed to SecondVC. NSNotificationCenter cannot…
Hanz Cheah
  • 761
  • 5
  • 15
  • 44
-1
votes
1 answer

iOS Passing Value to a View Controller from a TabView

Have made a login page and after authentication, User will able to access the tab views. Would like to ask if there is anyway there could pass a string value that contain a URL to the first view of the tab and at the same time show the view of the…
Mugger888
  • 1
  • 1
-1
votes
1 answer

ScrollView with Images - changing tabs on touchesended does not work

In my app I have a UIScrollView and within that I have programmatically created UIImageViews. This is based off the Tab-bar template in Xcode. What I'm trying to do is to change Tabs when a particular image is pressed, and whilst I'm able to…
G4laxy
  • 26
  • 5