i want my splitviewController to be displayed in within a TabBarController. Unfortunately, I firstly decided to just have a SplitViewController and chose apple's template. Now i am in the inconvenient position not knowing how to add it to a tab bar.

I tried several stuff that was explained here on StackOverflow but the best result was a black screen with a tab bar below it :-(

I am just struggling to find a nice and simple way.

Code of my Appdelegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{
// Override point for customization after application launch.
// Add the split view controller's view to the window and display.
self.window.rootViewController = self.splitViewController;
[self.window makeKeyAndVisible];

NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentFolderPath = [searchPaths objectAtIndex: 0];
self.rootViewController.directoryPath = documentFolderPath; 

NSURL *docUrl = [launchOptions objectForKey:UIApplicationLaunchOptionsURLKey];
if ([docUrl isFileURL]) {
    NSString *path = [docUrl path];
    self.detailViewController.currentFilePath = path;
    [self.detailViewController setDetails:path newFile:FALSE];
}
return YES;
link|improve this question

1  
so you want one of the tabs of your UITabBarController to show a UISplitViewController, with two views in it? – Eduardo Scoz Nov 2 '11 at 18:20
Yes, you are right. – Urban Seifert Nov 3 '11 at 9:34
Check at my answer, also you can use Interface Builder. – Elvis Nunez Nov 8 '11 at 1:48
feedback

3 Answers

up vote 1 down vote accepted

From Apple's documentation this is a no no situation.

But there is a way to achieve this easily (we did it for an application).

  1. Create your own mySplitController extending UIViewController.

  2. Have an ivar and retainableProperty named leftController

  3. Have an ivar and retainableProperty named rightController

  4. Have a method as below method as below

    -(mySplitController*) initwithLeftVC:(UIViewController*)leftvc rightVC:(UIViewController*)rightvc
    {
       if(self=[super init])
       {
          leftVc.view.frame=CGRectMake(0,0,320,self.view.frame.height);
          [self.view addsubView:leftVc.view];
          righttVc.view.frame=CGRectMake(0,0,self.view.frame.width-320,self.view.frame.height);
          [self.view addsubView:rightVc.view];
       }
       return self;
    }
    
  5. Now if RootVC is your root controller and DetailedVC is right/detail controller then the following code initialize it for you.

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
            // Override point for customization after application launch.
            UITabBarController *tabBarController = [[UITabBarController alloc] init];
            //set tbconroller as root view controller of window
            [self.window setRootViewController:tabBarController];
            //window retains controller so we can release
            [tabBarController release];
    
            //create split view controller
            RootVC *rvc=[[RootVC alloc] init];
            DetailedVc *dvc=[[DetailedVc alloc] init];
            mySplitController *msc = [[mySplitController alloc] initwithLeftVC:rvc rightVC:dvc];
    
            //create a temporary VC to show in second tab
            UIViewController *vc2 = [[UIViewController alloc] init];
    
            //make an array containing these two view controllers
            NSArray *viewControllers = [NSArray arrayWithObjects:msc,vc2,nil];
            [tabBarController setViewControllers:viewControllers];
    
            //the views are retained their new owners, so we can release
            [vc1 release];
            [vc2 release];          
    
            [[self window] makeKeyAndVisible];
            return YES;
    }
    

You can download sample app from http://www.codeworth.com/Files/TabAndSplitApp_Source.zip

On running sample app expected output will be as like in below images Tab with a split view in it

Second Tab with a normal view in it

I think this would be the apt answer for the question.

link|improve this answer
Awesome! Thanks a lot! Can I still use the popover isntead of the left view in the splitviewcontroller's portrait mode? – Urban Seifert Nov 3 '11 at 20:58
Of-course we can. But,we should be little tricky for that. i have an idea i will try and come back to you. – Rama Krishna Chunduri Nov 4 '11 at 13:13
1  
I managed to hide Root view in potrait mode but the navigation controllers back button is occupying the top left corner & hence it seems to be little complex one. – Rama Krishna Chunduri Nov 7 '11 at 5:47
1  
Elvis's answer is also an apt one. but the IntelligentSplitViewController also doesn't seems to have popover for left view – Rama Krishna Chunduri Nov 7 '11 at 5:55
You think it would be possible to realise the whole thing with storyboards? – Urban Seifert Nov 12 '11 at 9:45
feedback

You should check IntelligentSplitViewController is everything you need!

Adding some controllers and design you can end with something like this:

Screenshot of an iPad app using IntelligentSplitViewController

PS: I've actually have an app in the App Store using this controller so go head!

link|improve this answer
feedback

Edit:

i just realized you actually wanted a splitview inside the tabbar. per apple documentation, this is a no no. http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/iPadControllers/iPadControllers.html

A split view controller must always be the root of any interface you create. In other words, you must always install the view from aUISplitViewController object as the root view of your application’s window. The panes of your split-view interface may then contain navigation controllers, tab bar controllers, or any other type of view controller you need to implement your interface.


If you still want to use a tabbar the stuff i wrote below still applies, but your subview should not be a splitview controller.

original answer:

you'd create the tabbar controller in the code, then add the splitview controller as one of the tabs. in your case, self.splitViewController will become one of the view controllers inside your tabbar controller. I haven't tried this using an apple template app as a starting point, but give it should work.

you can look for tutorials on uitabbarcontroller for more information. This one looks promising: http://www.xcode-tutorials.com/uitabbarcontroller-and-uinavigationcontroller/

And this is handy too: http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITabBarController_Class/Reference/Reference.html

heres a sample:

   - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        // Override point for customization after application launch.
        UITabBarController *tabBarController = [[UITabBarController alloc] init];
        //set tbconroller as root view controller of window
        [self.window setRootViewController:tabBarController];
        //window retains controller so we can release
        [tabBarController release];

        //create two view controllers
        UIViewController *vc1 = [[HypnosisViewController alloc] init];
        UIViewController *vc2 = [[CurrentTimeViewController alloc] init];
        //make an array containing these two view controllers
        NSArray *viewControllers = [NSArray arrayWithObjects:vc1,vc2,nil];

        [tabBarController setViewControllers:viewControllers];

        //the views are retained their new owners, so we can release
        [vc1 release];
        [vc2 release];          

        [[self window] makeKeyAndVisible];
        return YES;
    }

if you're using interface builder, here are a few more tutorials http://www.cimgf.com/2009/06/25/uitabbarcontroller-with-uinavigationcontroller-using-interface-builder/ or http://www.mobisoftinfotech.com/blog/iphone/iphone-tabbar-uitabbarcontroller-tutorial/

link|improve this answer
Thanks mate! You used Hillegass's example code, right ;) I was wondering whether was a way to do it completely in IB, with storyboards and stuff? – Urban Seifert Nov 3 '11 at 20:59
good eye! :) i enjoyed the book and still had some sample code from it floating around. i dont think there is a way in IB because apple doesnt want us to. – Mark Nov 4 '11 at 0:52
feedback

Your Answer

 
or
required, but never shown

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