What is the proper way to dismiss a modal when using storyboards?

前端 未结 6 1038
终归单人心
终归单人心 2021-02-05 00:24

Using storyboards, what is the proper way to dismiss a modal?

  • using IBAction and writing code to dismiss after a button click?
  • using segue and notify the
6条回答
  •  攒了一身酷
    2021-02-05 00:58

    See Here Dismissing a Presented View Controller about halfway down

    When it comes time to dismiss a presented view controller, the preferred approach is to let the presenting view controller dismiss it.

    So you should use an IBAction and writing code to dismiss after a button click

提交回复
热议问题