Questions tagged [uisplitviewdelegate]

A uisplitviewdelegate is actually a UISplitViewControllerDelegate, which defines methods that allow you to manage changes to a split view interface.

From the docs:

A uisplitviewdelegate is actually a UISplitViewControllerDelegate, which defines methods that allow you to manage changes to a split view interface. Use the methods of this protocol to respond to changes in the current display mode and to the current interface orientation. When the split view interface collapses and expands, or when a new view controller is added to the interface, you can also use these methods to configure the child view controllers appropriately.

20 questions
0
votes
1 answer

Swift iOS- Trigger action when SplitViewController's displayModeButtonItem is tapped

I have a SplitViewController and I'm implementing: myNavVC?.topViewController?.navigationItem.leftBarButtonItem = splitViewController?.displayModeButtonItem myNavVC?.topViewController?.navigationItem.leftItemsSupplementBackButton = true I use it to…
Lance Samaria
  • 17,576
  • 18
  • 108
  • 256
0
votes
1 answer

UISplitViewController: some delegate methods not fired

The UISplitViewControllerDelegate shows a really weird behavior. Some of the delegate methods are not being called, but others are. The following method gets called, so the delegate is set correctly. -…
0
votes
1 answer

not working UISplitViewController - WillHideViewController not called in monotouch

I have problem with UISplitviewcontroller, When I create splitviewcontroller (first time) shows barbutton and it works fine, After select table row in master, its remove detailview1 & add detailview2, now the barbutton not shown. if i rotate iPad…
0
votes
1 answer

UIAlertView in UISplitViewController's DetailView not triggering UIAlertViewDelegate Code

I created a Master-Detail project for the iPad in Xcode. I then added a button and an action that the button triggers (I connected the button to the action in IB) an UIAlertView with three buttons, then added the UIAlertViewDelegate to the .h…
0
votes
2 answers

UINavigationController & SplitViewController

I have a project where I use a NavigationController as a detailed view for my SplitViewController. So when the app shows up, everything is fine in both orientations. However as soon as i push a view inside my navigation controller, if i'm in…
1
2