Programmatically go back to previous ViewController in Swift

前端 未结 15 1533
野的像风
野的像风 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:44

    for swift 3 you just need to write the following line of code

    _ = navigationController?.popViewController(animated: true)
    

提交回复
热议问题