DO NOT USE. Use the uisplitviewcontroller tag instead.
Questions tagged [uisplitview]
100 questions
0
votes
1 answer
Grouped styled tableview in detailview of splitview
I try to have a grouped styled tableview in the right view of my splitview (DetailViewController). The DetailViewController has a UITableViewController without NIB file. I already have implemented
- (id)initWithStyle:(UITableViewStyle)style {
if…

Christian Loncle
- 1,584
- 3
- 20
- 30
0
votes
2 answers
Change RootViewController inside UISplitView
I'm developing a little example for iPad from a UISplitView XCode Template. It's formed by a root controller which is shown in the left of the window and a detail view which is shown in the right.
What I want to achieve is very simple (at least I…

Jacob
- 1,886
- 2
- 25
- 40
0
votes
1 answer
UISplitView in Portrait - iPAD
How to create Split Over Screen in iPad. I need to develop application which is in portrait view. I need to use Split Over screen view in my application using Portrait View. Please help me to do so.

Zeeshan Ali
- 11
- 5
0
votes
1 answer
UISplitView question and issues
I created a new project with a UISplitViewApplication. When you do this you will find a DetailViewController and RootViewController. In the DetailViewController there is a UIToolbar on top that resizes according to the orientation, whether it's…

aherlambang
- 14,290
- 50
- 150
- 253
0
votes
1 answer
Adding a custom label to a prototype cell in a split view
I am working on a dictionary app in a SplitViewController. On the master view controller I want to show the various entry words AND the number of times that they've been tapped, while on the detail I want to show the word definition and details.…

VeloPietoso
- 5
- 2
0
votes
1 answer
Extend UISplitViewController?
Is there a way to extend the functionality of UISplitViewController?
I would like to:
Have a toolbar at bottom, common for both detail and master controller.
Make the detailViewController behave as a UINavigationController, i mean push and…

jsan
- 733
- 11
- 26
0
votes
1 answer
Tab bar in Split View Controller Root - How to connect to Detail View?
working on my first iPad project and after many false starts I have a basic interface that I am happy with that consists of a Split View Controller with a 4-tab Tab Bar at the bottom of the Root/Popover.
I have 4 different View Controllers for each…

redfawn
- 3
- 2
0
votes
2 answers
UISplitViewController inside UITabBarVC: showDetail and hide tab bar
When I try to show view controller in UISplitView, I need to hide tab bar. I try use hidesBottomBarWhenPushed, but its not works. Is it possible to hide tab bar on showDetail without smell code? (like viewwillappear etc)

Ihor M.
- 184
- 10
0
votes
2 answers
in iPad screen it is not displaying split view
In this split view was not displaying on the iPad screen if I drag it was displaying and if I select an index it is not displaying on the label
class ListTableViewController: UITableViewController {
let names =…
user7322166
0
votes
0 answers
Show detail Segue is not working when I use with manual
I'm using splitview controller in my app. I directly connect UITableViewCell to detailViewController with segue.I used show detail. It's working fine.
However, it's not working, when I call manually segue instead of connect in storyboard. I'm using…

saturngod
- 24,649
- 17
- 62
- 87
0
votes
4 answers
Is apple will reject my iPad app if i will not use Split view in my application?
I have make an iphone app and now i am converting it to universal app for ipad.
I want that interface of my looks similar in ipohne and in ipad.
If i will not using the split view controller for iPad then is apple will reject my app for iPad.
Is…

Yasir Abbas
- 11
- 1
0
votes
1 answer
UISplitViewControllerDelegate willHideViewController sends wrong popOverController
I push a UITableViewController into a NavigationController (the NavController returned in the 0th element of a call to UISplitViewController viewControllers). I set this TVC to be the UISplitViewControllers delegate. The newly pushed TVCs delegate…

StoneBreaker
- 723
- 10
- 19
0
votes
1 answer
Showing fall back screen for UISplitview Secondary view when Object array is empty
I had a quick question related to initially loading the secondary view in UISplitView. I've currently got the code in my masterVC.swift to populate the detailsVC with the first object in an array if there is one. This works fine, the problem is that…

Gareth Jones
- 1,760
- 1
- 14
- 24
0
votes
1 answer
Force UISplitViewController (which is programmatically made rootViewController) to start with master view on iPhone in Swift
I have a universal app that uses two different UISplitview Controllers to control two different Master/Detail sets of information (one data type is nested within the other).
I switch from the first into the other by calling the following function:…

Steven Hovater
- 1,389
- 2
- 12
- 25
0
votes
0 answers
Disable sending gestures for UIControl subclass
I have a UIControl subclass on an iPad inside of a UISplitView. Dragging left to right in the control invokes the show master view functionality of the UISplitView. Below is the touch tracking that I do in the control. Is there a way to prevent the…

Mr Beardsley
- 3,743
- 22
- 28