我正在为tvOS开发一个应用程序。在我的应用程序中,用户分别在不同的视图控制器中选择他们的国家,州和地区。选择后,App会显示一个页面,其中包含与用户选择相关的信息。当用户按下此页面中的菜单按钮时,我希望应用程序退出,但应用程序转到上一页,即区选择视图控制器。
如何在这种情况下退出应用程序。我不希望用户返回所有页面退出应用程序。
答案 0 :(得分:1)
我找到了this提出Daniel Storm提到的问题的解决方案。这是快速代码:
override func viewDidLoad(){
let tapRecognizer = UITapGestureRecognizer(target: self, action: "handleTap:")
tapRecognizer.allowedPressTypes = [NSNumber(integer: UIPressType.Menu.rawValue)]
self.view.addGestureRecognizer(tapRecognizer)
}
func handleTap(gesture: UITapGestureRecognizer){
if gesture.state == UIGestureRecognizerState.Ended {
let app = UIApplication.sharedApplication()
app.performSelector(Selector("suspend"))
}
}
我希望它有所帮助。