web-dev-qa-db-ja.com

swiftでView Controllerをプログラムで表示する

こんにちは、次のObjective CコードをSwiftに変換して、ボタンがクリックされたときに、あるView Controllerから別のView Controllerに移動しようとしています。どんな助けでも大歓迎です

これはAppleのプログラミングガイドから引用したものです

  - (void)add:(id)sender {
 // Create the root view controller for the navigation controller
 // The new view controller configures a Cancel and Done button for the
 // navigation bar.
   RecipeAddViewController *addController = [[RecipeAddViewController alloc]
                   init];

 // Configure the RecipeAddViewController. In this case, it reports any
 // changes to a custom delegate object.
   addController.delegate = self;

 // Create the navigation controller and present it.
  UINavigationController *navigationController = [[UINavigationController alloc]
                         initWithRootViewController:addController];
  [self presentViewController:navigationController animated:YES completion: nil];
  }

私のコードは以下に示されていますが、Navigation Controllerでの実装方法がわかりません。ストーリーボードでは、mainSectionViewControllerにはNavigation Controllerが埋め込まれています

    func sectionBtnClicked (sender: UIButton!) {


        let sectionController = self.storyboard?.instantiateViewControllerWithIdentifier("mainSectionsVC") as mainSectionViewController


        let navController = UINavigationcontroler. ///not sure what actually comes here, any help would be appreciated


        self.presentViewController(navController, animated: true, completion: nil)


}
12
Magesh

NavControllerをモーダルで表示しますか?

はいの場合、これが答えです

self.presentViewController(navController, animated: true, completion: nil)

「self」は、navControllerを表示する現在のView Controllerです

そして、このように入れて、

class ViewController: UIViewController {       

    override func viewDidLoad() {
        super.viewDidLoad()

        var theButton = UIButton()

        // Add the event to button
        theButton.addTarget(self, action: "buttonTouchInside:", forControlEvents: .TouchUpInside)

        self.view.addSubview(theButton)
    }

    func buttonTouchInside(sender:UIButton!)
    {
        // When the button is touched, we're going to present the view controller

        // 1. Wrap your view controller within the navigation controller

        let navController = UINavigationController(rootViewController: yourViewController)

        // 2. Present the navigation controller

        self.presentViewController(navController, animated: true, completion: nil)
    }

}

だが、

NavigationControllerのviewController間をナビゲートする場合は、次を使用できます。

self.navigationController.pushViewController(viewControllerToPush, animated: true)
20
Edward Anthony

私は簡単な解決策を作りました。ここにあります..

func actioncall () {
    let loginPageView =  self.storyboard?.instantiateViewControllerWithIdentifier("LoginPageID") as! ViewController
    self.presentViewController(loginPageView, animated: true, completion: nil)
}
14
A.G