31

iOS - Split View Controller - How do I get a pointer (reference) to the Detail View Controller (the bigger right one) from inside the Master View Controller (the smaller left one)?

My gut tell me the Main Split View Controller should have a reference to Detail View Controller and to my own Master View Controller, but I can't figure out how to get it.

Any thoughts?

3 Answers 3

70

Split view controllers do have references to their master and detail view controllers, via the viewControllers property.

In iOS 7.x and below, the viewControllers array should have exactly two view controller objects in it. The first object is the master view controller and the second object is the detail view controller.

In iOS 8.0 and above, the viewControllers array has at least one view controller object in it – the master (or "primary") view controller. If a second view controller object is in the array, then it is the detail (or "secondary") view controller. When the split view controller is collapsed, only the master view controller is in this array, and when expanded it will contain both the master and the detail view controllers.

You can use the splitViewController property of all view controllers to get your split view controller, and from there use the viewControllers property to access either your master or detail view controllers, like so:

Swift:

let masterVC = self.splitViewController?.viewControllers.first
let detailVC = (self.splitViewController?.viewControllers.count > 1) ? self.splitViewController?.viewControllers[1] : nil

Objective-C:

UIViewController *masterVC = [self.splitViewController.viewControllers firstObject];
UIViewController *detailVC;
if (self.splitViewController.viewControllers.count > 1) {
    detailVC = self.splitViewController.viewControllers[1];
}

The splitViewController property works by walking up the view controller hierarchy and trying to find any split view controller that the calling view controller is in. If the view controller is not in a split view controller, then the property is nil. It works the same as the navigationController and tabBarController view controller properties.

You can make the master and detail view controllers easier to access using an extension in Swift (or a category in Objective-C) on UISplitViewController, like so (replacing all the xx_'s with your own prefix if you're using Objective-C):

Swift:

extension UISplitViewController {
    var primaryViewController: UIViewController? {
        return self.viewControllers.first
    }

    var secondaryViewController: UIViewController? {
        return self.viewControllers.count > 1 ? self.viewControllers[1] : nil
    }
}

Objective-C:

// UISplitViewController+ChildViewControllerAccess.h
@interface UISplitViewController (ChildViewControllerAccess)

@property (nonatomic, readonly) UIViewController *xx_primaryViewController;
@property (nonatomic, readonly) UIViewController *xx_secondaryViewController;

@end

// UISplitViewController+ChildViewControllerAccess.m
@implementation UISplitViewController (ChildViewControllerAccess)

- (UIViewController *)xx_primaryViewController
{
    return self.viewControllers.firstObject;
}

- (UIViewController *)xx_secondaryViewController
{
    return self.viewControllers.count > 1 ? self.viewControllers[1] : nil;
}

@end

You can then make use of these properties like so:

Swift:

func someFunctionInSomeViewControllerClass {
    // Get the primary and secondary view controllers if
    // this view controller is in a split view controller.
    // These will be nil if this view controller is not a
    // descendant of a split view controller.
    var primaryVC = self.splitViewController?.primaryViewController
    var secondaryVC = self.splitViewController?.secondaryViewController

    // Do something with them
    primaryVC?.title = "This is the primary VC"
    secondaryVC?.title = "This is the secondary VC"
}

Objective-C:

#import "UISplitViewController+ChildViewControllerAccess.h"

[...]

- (void)someMethodInSomeViewControllerClass
{
    // Get the primary and secondary view controllers if
    // this view controller is in a split view controller.
    // These will be nil if this view controller is not a
    // descendant of a split view controller.
    UIViewController *primaryVC = self.splitViewController.xx_primaryViewController;
    UIViewController *secondaryVC = self.splitViewController.xx_secondaryViewController;

    // Do something with them
    primaryVC.title = @"This is the primary VC";
    secondaryVC.title = @"This is the secondary VC";
}
9
  • 2
    Wow... didn't know all View Controllers have a splitViewController property for this exact purpose. Great! Thank you!
    – unom
    Commented Aug 18, 2014 at 8:42
  • 6
    viewControllers property may contain only one view controller, "..When the split view interface is expanded, this property contains two view controllers; when it is collapsed, this property contains only one view controller. The first view controller in the array is always the primary (or master) view controller. If a second view controller is present, that view controller is the secondary (or detail) view controller..."
    – adib
    Commented May 9, 2015 at 7:11
  • @adib Thanks, adib! I had no idea. I've updated the answer to reflect how the viewControllers array works in iOS 8. I also added some code for a category to make accessing these view controllers (somewhat) easier.
    – TylerP
    Commented May 9, 2015 at 9:47
  • 6
    How do i get to the DetailsViewController when its collapsed?
    – ilan
    Commented Jul 26, 2016 at 13:45
  • If you apply the methods given by MrSaturn to the split view in Xcode's Master-Detail template project, primaryVC will be a UINavigationController. Well, OK, UINavigationController inherits from UIViewController. To get the view controller you probably want, downcast primaryVC to a UINavigationController and get its topViewController. Commented Dec 24, 2016 at 1:48
4

If you are using iOS 14+, you can get a specific viewController from splitViewController using viewController(for:) method:

let detailViewController = splitViewController.viewController(for: .secondary) as? DetailViewController
1
  • And this event returns the previously shown detail if collapsed and the nav controller is showing the master!
    – malhal
    Commented Jan 2 at 15:55
1

Create a property in your UISplitViewController subclass:

var __detailViewController: UIViewController? {
    get {
        if viewControllers.count > 1 {
            return viewControllers[1] as? UIViewController
        }
        return nil
    }
}

According to Apple's documentation, this should sometimes return nil, but in my experience, it always returns the detail view controller, regardless of state.

Also, do not call this property "detailViewController" instead of "__detailViewController" - Apple is apparently already using that name under the hood, and it will mess with your UI.

UISplitViewController is really hokey and needs a lot of cleanup and corrected documentation...

Not the answer you're looking for? Browse other questions tagged or ask your own question.