web-dev-qa-db-fra.com

Présentation par programmation d'un contrôleur de vue dans swift

Salut, j'essaie de convertir le code Objective C suivant en Swift pour naviguer d'un contrôleur de vue à un autre contrôleur de vue lorsqu'un bouton est cliqué. Toute aide serait très appréciée

Ceci est tiré du guide de programmation d'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];
  }

mon code est indiqué ci-dessous, mais je ne sais pas comment l'implémenter dans le contrôleur de navigation, dans le storyboard mon mainSectionViewController est intégré avec un contrôleur de navigation

    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

Voulez-vous présenter navController de manière modale?

si oui, c'est la réponse

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

"self" est le contrôleur de vue actuel qui présentera le navController

Et le mettre comme ça,

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)
    }

}

Mais,

Si vous souhaitez naviguer entre viewController dans le navigationController, vous pouvez utiliser

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

J'ai fait une solution simple. C'est ici..

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