美文网首页Swift
swift push , po , present , dism

swift push , po , present , dism

作者: 江河_ios | 来源:发表于2019-01-02 15:17 被阅读0次

//push 跳转

        let chooseVC = ChooseAvdioDataViewController()

        self.navigationController?.pushViewController(chooseVC, animated:true)

// po 跳转

        self.navigationController?.popViewController(animated:true)

//present 跳转

 let vc = SwiftPresendViewController()

  self.present(vc, animated:true, completion:nil)

//dismiss 跳转

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

相关文章

网友评论

    本文标题:swift push , po , present , dism

    本文链接:https://www.haomeiwen.com/subject/gjuzlqtx.html