当 UIButton 获得焦点时,Siri Remote 的菜单按钮不退出应用程序
Posted
技术标签:
【中文标题】当 UIButton 获得焦点时,Siri Remote 的菜单按钮不退出应用程序【英文标题】:Siri Remote's Menu Button not exiting application when UIButton is focused 【发布时间】:2016-06-07 17:26:29 【问题描述】:我将覆盖 pressesBegan
以接收 Select 按下。当焦点位于UIButton
时,Siri Remote 的菜单按钮不会退出我的应用程序。如果没有聚焦 UI 元素,则菜单按钮按预期工作。
当焦点位于 UIButton
时,我如何接收菜单按钮按下?
override func pressesBegan(presses: Set<UIPress>, withEvent event: UIPressesEvent?)
for item in presses
if item.type == .Select
print("Click")
if item.type == .Menu
print("Menu Button")
super.pressesBegan(presses, withEvent: event)
【问题讨论】:
【参考方案1】:UIButton
只响应遥控器上的.Select
按钮。您可以使用轻击手势识别器来捕捉菜单按钮。例如:
let tapRecognizer = UITapGestureRecognizer(target: self, action: #selector(ClassName.menuPressed()))
tapRecognizer.allowedPressTypes = [NSNumber(integer: UIPressType.Menu.rawValue)];
view.addGestureRecognizer(tapRecognizer)
然后执行:
func menuPressed()
// do something
【讨论】:
这很好用。忘记使用UITapGestureRecognizer
。有没有办法优雅地回到主屏幕而不是exit(0)
?
没关系,知道了:UIControl().sendAction(#selector(NSURLSessionTask.suspend), to: UIApplication.sharedApplication(), forEvent: nil)
谢谢!以上是关于当 UIButton 获得焦点时,Siri Remote 的菜单按钮不退出应用程序的主要内容,如果未能解决你的问题,请参考以下文章
iOS Accessibility - 控制哪个 UI 对象获得焦点
如何在 UIToolbar 完成按钮中将焦点从一个 UIButton 设置到另一个 UIButton
当 UISearchController 获得焦点时重置 UIView