How can create a SplitViewController programmatically in Swift?











up vote
6
down vote

favorite
5












What steps do I need to do? In Objective-C we created a rootViewController and detailViewController, after there added this controllers to splitViewController. For example:



 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
UISplitViewController *splitViewController = [[UISplitViewController alloc] init];
MTTRootViewController *rootViewController = [[MTTRootViewController alloc] init];
MTTDetailedViewController *detailedViewController = [[MTTDetailedViewController alloc]init];
splitViewController.viewControllers = [NSArray arrayWithObjects:rootViewController, detailedViewController, nil];
[self.window setRootViewController:(UIViewController*)splitViewController];
[self.window makeKeyAndVisible];
return YES;
}


How can I do the same in Swift?










share|improve this question




























    up vote
    6
    down vote

    favorite
    5












    What steps do I need to do? In Objective-C we created a rootViewController and detailViewController, after there added this controllers to splitViewController. For example:



     - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    UISplitViewController *splitViewController = [[UISplitViewController alloc] init];
    MTTRootViewController *rootViewController = [[MTTRootViewController alloc] init];
    MTTDetailedViewController *detailedViewController = [[MTTDetailedViewController alloc]init];
    splitViewController.viewControllers = [NSArray arrayWithObjects:rootViewController, detailedViewController, nil];
    [self.window setRootViewController:(UIViewController*)splitViewController];
    [self.window makeKeyAndVisible];
    return YES;
    }


    How can I do the same in Swift?










    share|improve this question


























      up vote
      6
      down vote

      favorite
      5









      up vote
      6
      down vote

      favorite
      5






      5





      What steps do I need to do? In Objective-C we created a rootViewController and detailViewController, after there added this controllers to splitViewController. For example:



       - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
      {
      self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
      self.window.backgroundColor = [UIColor whiteColor];
      UISplitViewController *splitViewController = [[UISplitViewController alloc] init];
      MTTRootViewController *rootViewController = [[MTTRootViewController alloc] init];
      MTTDetailedViewController *detailedViewController = [[MTTDetailedViewController alloc]init];
      splitViewController.viewControllers = [NSArray arrayWithObjects:rootViewController, detailedViewController, nil];
      [self.window setRootViewController:(UIViewController*)splitViewController];
      [self.window makeKeyAndVisible];
      return YES;
      }


      How can I do the same in Swift?










      share|improve this question















      What steps do I need to do? In Objective-C we created a rootViewController and detailViewController, after there added this controllers to splitViewController. For example:



       - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
      {
      self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
      self.window.backgroundColor = [UIColor whiteColor];
      UISplitViewController *splitViewController = [[UISplitViewController alloc] init];
      MTTRootViewController *rootViewController = [[MTTRootViewController alloc] init];
      MTTDetailedViewController *detailedViewController = [[MTTDetailedViewController alloc]init];
      splitViewController.viewControllers = [NSArray arrayWithObjects:rootViewController, detailedViewController, nil];
      [self.window setRootViewController:(UIViewController*)splitViewController];
      [self.window makeKeyAndVisible];
      return YES;
      }


      How can I do the same in Swift?







      ios swift ipad uisplitviewcontroller






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 at 12:46









      Shruti Thombre

      8051521




      8051521










      asked Jun 10 '14 at 7:46









      val_lek

      1,27021010




      1,27021010
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          13
          down vote













          if you want do it with navigationController, then try it:



          func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
          self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
          self.window!.backgroundColor = UIColor.whiteColor()
          var splitViewController = UISplitViewController()
          var rootViewController = RootViewController()
          var detailViewController = DetailViewController()
          var rootNavigationController = UINavigationController(rootViewController:rootViewController)
          var detailNavigationController = UINavigationController(rootViewController:detailViewController)
          splitViewController.viewControllers = [rootNavigationController,detailNavigationController]
          self.window!.rootViewController = splitViewController
          self.window!.makeKeyAndVisible()
          return true
          }





          share|improve this answer





















          • Thank you! It's really works!
            – val_lek
            Jun 11 '14 at 7:14


















          up vote
          1
          down vote













          After some time I found answer:



          At first time need create rootViewController and detailViewController. For example, rootViewController will be inherit from UITableViewController and detailViewController will inherit from UIViewController.
          At next time you will need do this:



          func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
          self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
          self.window!.backgroundColor = UIColor.whiteColor()
          var splitViewController = UISplitViewController()
          var rootViewController = RootViewController()
          var detailViewController = DetailViewController()
          splitViewController.viewControllers = [rootViewController,detailViewController]
          self.window!.rootViewController = splitViewController
          self.window!.makeKeyAndVisible()
          return true
          }





          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f24135578%2fhow-can-create-a-splitviewcontroller-programmatically-in-swift%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            13
            down vote













            if you want do it with navigationController, then try it:



            func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            self.window!.backgroundColor = UIColor.whiteColor()
            var splitViewController = UISplitViewController()
            var rootViewController = RootViewController()
            var detailViewController = DetailViewController()
            var rootNavigationController = UINavigationController(rootViewController:rootViewController)
            var detailNavigationController = UINavigationController(rootViewController:detailViewController)
            splitViewController.viewControllers = [rootNavigationController,detailNavigationController]
            self.window!.rootViewController = splitViewController
            self.window!.makeKeyAndVisible()
            return true
            }





            share|improve this answer





















            • Thank you! It's really works!
              – val_lek
              Jun 11 '14 at 7:14















            up vote
            13
            down vote













            if you want do it with navigationController, then try it:



            func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            self.window!.backgroundColor = UIColor.whiteColor()
            var splitViewController = UISplitViewController()
            var rootViewController = RootViewController()
            var detailViewController = DetailViewController()
            var rootNavigationController = UINavigationController(rootViewController:rootViewController)
            var detailNavigationController = UINavigationController(rootViewController:detailViewController)
            splitViewController.viewControllers = [rootNavigationController,detailNavigationController]
            self.window!.rootViewController = splitViewController
            self.window!.makeKeyAndVisible()
            return true
            }





            share|improve this answer





















            • Thank you! It's really works!
              – val_lek
              Jun 11 '14 at 7:14













            up vote
            13
            down vote










            up vote
            13
            down vote









            if you want do it with navigationController, then try it:



            func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            self.window!.backgroundColor = UIColor.whiteColor()
            var splitViewController = UISplitViewController()
            var rootViewController = RootViewController()
            var detailViewController = DetailViewController()
            var rootNavigationController = UINavigationController(rootViewController:rootViewController)
            var detailNavigationController = UINavigationController(rootViewController:detailViewController)
            splitViewController.viewControllers = [rootNavigationController,detailNavigationController]
            self.window!.rootViewController = splitViewController
            self.window!.makeKeyAndVisible()
            return true
            }





            share|improve this answer












            if you want do it with navigationController, then try it:



            func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            self.window!.backgroundColor = UIColor.whiteColor()
            var splitViewController = UISplitViewController()
            var rootViewController = RootViewController()
            var detailViewController = DetailViewController()
            var rootNavigationController = UINavigationController(rootViewController:rootViewController)
            var detailNavigationController = UINavigationController(rootViewController:detailViewController)
            splitViewController.viewControllers = [rootNavigationController,detailNavigationController]
            self.window!.rootViewController = splitViewController
            self.window!.makeKeyAndVisible()
            return true
            }






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jun 11 '14 at 7:10









            rusBogun

            279311




            279311












            • Thank you! It's really works!
              – val_lek
              Jun 11 '14 at 7:14


















            • Thank you! It's really works!
              – val_lek
              Jun 11 '14 at 7:14
















            Thank you! It's really works!
            – val_lek
            Jun 11 '14 at 7:14




            Thank you! It's really works!
            – val_lek
            Jun 11 '14 at 7:14












            up vote
            1
            down vote













            After some time I found answer:



            At first time need create rootViewController and detailViewController. For example, rootViewController will be inherit from UITableViewController and detailViewController will inherit from UIViewController.
            At next time you will need do this:



            func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
            self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
            self.window!.backgroundColor = UIColor.whiteColor()
            var splitViewController = UISplitViewController()
            var rootViewController = RootViewController()
            var detailViewController = DetailViewController()
            splitViewController.viewControllers = [rootViewController,detailViewController]
            self.window!.rootViewController = splitViewController
            self.window!.makeKeyAndVisible()
            return true
            }





            share|improve this answer

























              up vote
              1
              down vote













              After some time I found answer:



              At first time need create rootViewController and detailViewController. For example, rootViewController will be inherit from UITableViewController and detailViewController will inherit from UIViewController.
              At next time you will need do this:



              func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
              self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
              self.window!.backgroundColor = UIColor.whiteColor()
              var splitViewController = UISplitViewController()
              var rootViewController = RootViewController()
              var detailViewController = DetailViewController()
              splitViewController.viewControllers = [rootViewController,detailViewController]
              self.window!.rootViewController = splitViewController
              self.window!.makeKeyAndVisible()
              return true
              }





              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                After some time I found answer:



                At first time need create rootViewController and detailViewController. For example, rootViewController will be inherit from UITableViewController and detailViewController will inherit from UIViewController.
                At next time you will need do this:



                func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
                self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
                self.window!.backgroundColor = UIColor.whiteColor()
                var splitViewController = UISplitViewController()
                var rootViewController = RootViewController()
                var detailViewController = DetailViewController()
                splitViewController.viewControllers = [rootViewController,detailViewController]
                self.window!.rootViewController = splitViewController
                self.window!.makeKeyAndVisible()
                return true
                }





                share|improve this answer












                After some time I found answer:



                At first time need create rootViewController and detailViewController. For example, rootViewController will be inherit from UITableViewController and detailViewController will inherit from UIViewController.
                At next time you will need do this:



                func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
                self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
                self.window!.backgroundColor = UIColor.whiteColor()
                var splitViewController = UISplitViewController()
                var rootViewController = RootViewController()
                var detailViewController = DetailViewController()
                splitViewController.viewControllers = [rootViewController,detailViewController]
                self.window!.rootViewController = splitViewController
                self.window!.makeKeyAndVisible()
                return true
                }






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 10 '14 at 7:46









                val_lek

                1,27021010




                1,27021010






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f24135578%2fhow-can-create-a-splitviewcontroller-programmatically-in-swift%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Futebolista

                    Lallio

                    Jornalista