Questions tagged [uisplitview]

DO NOT USE. Use the uisplitviewcontroller tag instead.

100 questions
1
vote
2 answers

Part of the uiview doesn't call touchesBegan for view on top of uisplitview

I'm writting an ipad app with a uisplitview. Once a user taps on a button, I display another view in full screen by removing the uisplitview from the stack and pushing the new view. The problem I have is that the new uiview only gets touchesBegan…
eduardo
  • 41
  • 3
1
vote
1 answer

Hide gray box in UiSplitView when animating to PrimaryHidden from PrimaryOverlay in iPhone

There are numerous answers here that describe how to programmatically animate the primary split view: let addButton = self.splitViewController!.displayModeButtonItem() UIApplication.sharedApplication().sendAction(addButton.action, to:…
David H
  • 40,852
  • 12
  • 92
  • 138
1
vote
0 answers

Keyboard hides the text filed in the master UITableViewController when using UISplitViewController

Normally UITableViewController in iOS comes with the functionality of auto-scrolling the content to account for the active textfield, when keyboard is shown. But this feature stops working when adding the UITableViewController as a master page for…
1
vote
1 answer

Custom Camera view with Split View

I created many layouts with single frame to multiple frames .We should select any of the layouts after selection camera should be appeared to take pics the frames will be in split view.If we select a layout with 3 frames and we are taking pick for…
App Developer
  • 419
  • 1
  • 3
  • 16
1
vote
1 answer

iPad - I need to put a split view inside a tab bar application

Is there a way to add a split view in a tabbar application using only IB, without add the split view programmatically?
user299791
  • 2,021
  • 3
  • 31
  • 57
1
vote
1 answer

What are the best practices for converting existing iPhone navigation systems into a Split View navigation?

I am trying to figure out how to best convert many of may apps to Split View apps for the new iPad. What are some of the best ways to go about this, minimizing the amount of transition code needed? Remember, the code is under NDA, but discussing…
coneybeare
  • 33,113
  • 21
  • 131
  • 183
1
vote
1 answer

Multiple Split View Controllers

I have started to migrate from an iPhone app to an iPad app and I have hit the problem of how to include a UISplitViewController. My master / detail is not the root of the application, instead I have login pages and camera views etc before you get…
Craig Moore
  • 1,093
  • 1
  • 6
  • 15
1
vote
0 answers

Remove MasterView shadow in UISplitView

I have a UISplitView iPad Application, which shows and hides the MasterView via gestures for swiping left/right. If I make the UITableView background white, it appears as it should. https://i.stack.imgur.com/dtv1Q.png However when I make the…
1
vote
1 answer

Connecting Master View and Detail View in UISplitView

I'm having trouble getting my split view app working correctly. I'm not able to get anything to show up in the detail view when a row in the master view is tapped. Here is what I have right now. I'm at a total loss at this point because I can't…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
1
vote
0 answers

Popover not displaying correctly

I'm following a demo about hiding the left side of a Split View when the iPad is in Portrait, and then showing it as a Popover when a button placed in a toolbar is pressed. I followed everything step-by-step and it works (sort of) except that when I…
1
vote
1 answer

reload tableview in masterviewcontroller when make changes in detailsviewcontroller

I'm playing with split view and want to reload the table in master view when I make some changes in detail view. I do a callback to masterview to reload data: in detailview: - (void) doneEditSite { [popCtrl dismissPopoverAnimated:YES]; …
masgar
  • 1,875
  • 2
  • 20
  • 32
0
votes
1 answer

detailView issue in split view masterView

My detail view wont change when the row is selected unless I reassign what the detailItem is. I wonder how to fix this problem. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if ([[UIDevice…
0
votes
1 answer

UISplitview not alligned at the top

I have a problem I can't figure out, I have made an application which uses UIsplitview inside a tab bar. I have been implementing the different tabs however now when I am working on the first tab - the UIsplitview is not aligned in landscape mode.…
Bjarke
  • 1,283
  • 11
  • 36
0
votes
1 answer

uitableview within the detail side of a splitview

I need to create a tableview within the detail side of a splitview. I have learned how to create a tableview programmatically and have created it in a class called MyTableView. My problem is that the point at which I want to actually create the…
0
votes
1 answer

MGSplitViewController not as RootView but within a UIViewController

I'm very new to iOS programming (Coming from Java / C++). I'm trying to set up an app with a TabBarController of which one tab should be a SplitView. I've done my research and I know that UISplitview will not work and everywhere people recommend…