Programmatically go back to previous ViewController in Swift

前端 未结 15 1571
野的像风
野的像风 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条回答
  •  猫巷女王i
    2020-12-04 05:51

    swift 5 and above

    case 1 : using with Navigation controller

    self.navigationController?.popViewController(animated: true)
    

    case 2 : using with present view controller

    self.dismiss(animated: true, completion: nil)
    

提交回复
热议问题