user2868048
user2868048

Reputation: 81

Show a SplitViewController, when user press a button?

i'ts possible call/load a SplitViewController, when user press a button ???

for example, in my app i have a button called "Settings". When the user press that button, i'd like show the SplitViewController...

somebody help me ??

 PD. Already did a easy example with SplitViewController:
 but i don't know a solution for my problem..

Upvotes: 0

Views: 43

Answers (1)

user1744056
user1744056

Reputation:

UISplitViewController is inherited from the UIViewController. You can just push it onto navigation stack or perform seque if you use storyboards. If you use nibs then first instantiate it with initWithNibNamed: and then [self.navigationController pushViewController: yourSplitViewController].

Upvotes: 1

Related Questions