How can create a SplitViewController programmatically in Swift?
up vote
6
down vote
favorite
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
add a comment |
up vote
6
down vote
favorite
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
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
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
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
ios swift ipad uisplitviewcontroller
edited Nov 22 at 12:46
Shruti Thombre
8051521
8051521
asked Jun 10 '14 at 7:46
val_lek
1,27021010
1,27021010
add a comment |
add a comment |
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
}
Thank you! It's really works!
– val_lek
Jun 11 '14 at 7:14
add a comment |
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
}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
}
Thank you! It's really works!
– val_lek
Jun 11 '14 at 7:14
add a comment |
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
}
Thank you! It's really works!
– val_lek
Jun 11 '14 at 7:14
add a comment |
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
}
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
}
answered Jun 11 '14 at 7:10
rusBogun
279311
279311
Thank you! It's really works!
– val_lek
Jun 11 '14 at 7:14
add a comment |
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
add a comment |
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
}
add a comment |
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
}
add a comment |
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
}
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
}
answered Jun 10 '14 at 7:46
val_lek
1,27021010
1,27021010
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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