xcode – 解除nsviewcontroller swift不起作用

xcode – 解除nsviewcontroller swift不起作用,第1张

概述这是按钮动作: @IBAction func readyPressed(sender: NSButton) { self.dismissController(Hardness) println(1) self.performSegueWithIdentifier("manual", sender: self) } 当我按下按钮,println工作,segue工作, 这是按钮动作:

@IBAction func readypressed(sender: NSbutton) {    self.dismissController(Hardness)    println(1)    self.performSegueWithIDentifIEr("manual",sender: self)    }

当我按下按钮,println工作,segue工作,但NSVIEwController“硬度”不关闭

解决方法 请尝试使用

self.dismissVIEwControllerAnimated(true,completion: {});

或使用

navigationController.popVIEwControllerAnimated(true)

如此处所示

how to dismiss a view controller in swift

总结

以上是内存溢出为你收集整理的xcode – 解除nsviewcontroller swift不起作用全部内容,希望文章能够帮你解决xcode – 解除nsviewcontroller swift不起作用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1053541.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存