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

The cell of tavbview quickly slides into a blank

A tabview pull up, load the new data, and then quickly pull up, the above cell disappears and becomes blank,I guess because the refresh time, the data is not with the new This is the main code: @interface DYBOrdersViewController…
sunf_h
  • 3
  • 1
0
votes
1 answer

Remote reloading a view

I was wondering if there is a way to reload a view controller inside one tab from another tab. This is my scenario Tab controller has 2 or more tabs Tab 1 has a view controller which has views created based on some conditions Tab 2 is a settings…
Veeru
  • 4,936
  • 2
  • 43
  • 61
0
votes
2 answers

Swift: Passing Data Between UITabViews & Allowing Global Access to Data

First off, let me explain my app and its flow. The app opens, and the user creates a profile (stores all the data in a dictionary of type [String: Any]). After the user clicks on create, it sends them to a Console Screen (which displays parts of…
szady
  • 125
  • 1
  • 1
  • 9
0
votes
1 answer

Can i only display text in tab bar item and change the style and position

I add a tab bar in storyboard, and do not want to set an image to the tab bar item, and like the following: How can I change the font and the position for the title of the bar item in storybord?
Leo
  • 835
  • 1
  • 12
  • 31
0
votes
1 answer

When I change the view ($state.go(view)) I need to change tab

I have a problem with a custom directive that I wrote to simulate a tab view in angular. This directive has only a method to redirect from a state to another. This directive works fine. The template of the directive is a div with a uib-tabset and…
Peduz
  • 25
  • 6
0
votes
1 answer

Is it possible Bottom Tabview like iphone in android?

I need a tabview , but i has to be at bottom , am having a custom title , it covers most of topview . So i want to go v with bottom tab view . Other question is that , can i add Tabview in a tabview. Thanking you , Srinivas
Srinivas
  • 1,688
  • 8
  • 30
  • 51
0
votes
1 answer

UITableView Scroll is not work in inside UIScrollView

I add UITableView inside UIScrollView. It's working fine. UITableView width is 1200. I move scroll to over 320 , I can't scroll and click in UITableView. Between 0 and 320px, it's working fine. Over 320, UIScrollView is dragging the UITableview and…
saturngod
  • 24,649
  • 17
  • 62
  • 87
0
votes
1 answer

List view under tab

package com.example.helloandroid; import java.util.ArrayList; import java.util.Arrays; import android.app.TabActivity; import android.os.Bundle; import android.view.Window; import android.widget.ArrayAdapter; import android.widget.ListView; import…
varun86
  • 119
  • 1
  • 2
  • 9
0
votes
1 answer

How to display, fetched data from API, in the html page?

I have an html page. Here, I am using tabview of Yahoo API. That is :
0
votes
0 answers

make one common view class with xib for all viewcontrollers

I have 5 tabs in my iphone app, each tab have different viewcontrollers inside and I want to show & hide one common view (not viewcontroller) for all tabs and viewcontrollers. I can make one common class for that, then how can i show the view from…
Mumthezir VP
  • 6,251
  • 6
  • 28
  • 57
0
votes
2 answers

Implement UITabViewController with JASidePanelViewController

I am implementingJASidePanel withUITabViewController but I have some problem to implement. Currently I have Category view controller with UITabView After sliding shows category like this but I want to slide only oneviewcontroller not…
Vinod Jadhav
  • 1,055
  • 1
  • 15
  • 37
0
votes
1 answer

Passing data between navigation controller and tab controller

If a storyboard contains a view in a navigation controller that segues to another view controller already embedded in a tab controller how can a variable be passed from the initial view to the first view in a tab controller? Specifically, I am…
Michael Voccola
  • 1,827
  • 6
  • 20
  • 46
0
votes
0 answers

pass value to label inside UITabController from another tab iOS

I have UITabController with labels and buttons inside. I need to pass textView value from one tab to another's label. Using segues. Simply I need to do like this code: In TAB1: textView1 = @"test"; set Tab2.label1 = textView1; Thanks, David.
David Chelidze
  • 1,143
  • 12
  • 19
0
votes
3 answers

Switch from view controller to custom tab bar controller

I have an application that has an initial view controller that allows the user to log in. After the users logs in I'm trying to change the view to a custom tab bar controller that is of class type TabViewController. The problem is that when I switch…
Jared Price
  • 5,217
  • 7
  • 44
  • 74
0
votes
1 answer

Not able to call UITabview from NSNotificationCenter in IOS

I was able to implement the below mentioned library in my project. Library used:: https://github.com/rolandleth/LTHPasscodeViewController After entering the pin-code and after verifying that it is correct, i am not able to switch to tab-bar activity…
ASP
  • 3,645
  • 1
  • 31
  • 45