Programmatically go back to previous ViewController in Swift

前端 未结 15 1538
野的像风
野的像风 2020-12-04 04:50

I send the user over to a page on a button click. This page is a UITableViewController.

Now if the user taps on a cell, I would like to push him ba

15条回答
  •  借酒劲吻你
    2020-12-04 05:47

    Swift 3, Swift 4

    if movetoroot { 
        navigationController?.popToRootViewController(animated: true)
    } else {
        navigationController?.popViewController(animated: true)
    }
    

    navigationController is optional because there might not be one.

提交回复
热议问题