“Xcode execute o código depois de voltar para a tela” Respostas de código

Xcode execute o código depois de voltar para a tela

// Use this if you don't want to override the navigation style, text, etc.
override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)

    if self.isMovingFromParent {
        // Your code...
    }
}
TheKrisinator

Xcode execute o código depois de voltar para a tela

	// Use this to override the navigation bar's default back button
	override func viewDidLoad {
        super.viewDidLoad()
        self.navigationItem.hidesBackButton = true
        let newBackButton = UIBarButtonItem(title: "Back", style: UIBarButtonItemStyle.plain, target: self, action: #selector(YourViewController.back(sender:)))
        self.navigationItem.leftBarButtonItem = newBackButton
    }

    @objc func back(sender: UIBarButtonItem) {
        // Perform your custom actions
        // ...
        // Go back to the previous ViewController
        _ = navigationController?.popViewController(animated: true)
    }
TheKrisinator

Respostas semelhantes a “Xcode execute o código depois de voltar para a tela”

Perguntas semelhantes a “Xcode execute o código depois de voltar para a tela”

Mais respostas relacionadas para “Xcode execute o código depois de voltar para a tela” em Swift

Procure respostas de código populares por idioma

Procurar outros idiomas de código