可以在应用程序中禁用 Siri 吗?

发布于 2024-12-11 19:34:51 字数 179 浏览 0 评论 0原文

我正在开发一款 iOS 游戏,最近在 iPhone 4S 上进行了测试。当我的拇指覆盖接近传感器时,Siri 有时会激活。这是4S的一个特点。用户无需按住主页按钮,只需将手机放在耳边即可激活 Siri。但在我的游戏中,激活并不是有意的,它会中断游戏玩法。

可以在应用程序中禁用 Siri 吗?这是 iPhone 4S 的错误吗?

I'm working an on iOS game and recently tested on an iPhone 4S. Siri activates sometimes when my thumb covers the proximity sensor. This is a feature of the 4S. Instead of holding the home button, users can put the phone to their ear to activate Siri. But in my game the activation is not intended and it interrupts gameplay.

Can Siri be disabled within an app? Is this an iPhone 4S bug?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半枫 2024-12-18 19:34:51

设置:

[UIDevice currentDevice].proximityMonitoringEnabled = YES; 

当您激活接近传感器时,禁止 Siri 激活。结果,当接近传感器被激活时,它会黑屏。

Setting :

[UIDevice currentDevice].proximityMonitoringEnabled = YES; 

Disables Siri from activating when you activate the proximity sensor. As a result although, it blacks out the screen when the proximity sensor is activated instead.

っ〆星空下的拥抱 2024-12-18 19:34:51

Apple 已弃用对此的支持。

http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIApplication_Class/DeprecationAppendix/AppendixADeprecatedAPI.html#//apple_ref/occ/instp/UIApplication/proximitySensingEnabled

我会提交一份错误报告。

讨论
如果启用接近感应,则为 YES;否则不。 启用接近感应会告诉 iOS,如果用户的脸部靠近屏幕,它可能需要清空屏幕。默认情况下禁用接近感应。

这是替代方案,仅允许您获取通知,而不能禁用它。

讨论
仅当您的应用程序启用接近监控
需要通知邻近状态的变化
。否则,
禁用接近监控。默认值为“否”。

http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/doc/uid/TP40006902-CH3-SW25

Apple deprecated support for this.

http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIApplication_Class/DeprecationAppendix/AppendixADeprecatedAPI.html#//apple_ref/occ/instp/UIApplication/proximitySensingEnabled

I'd file a bug report.

Discussion
YES if proximity sensing is enabled; otherwise NO. Enabling proximity sensing tells iOS that it may need to blank the screen if the user's face is near it. Proximity sensing is disabled by default.

This the replacement which only allows you to get notification, not disable it.

Discussion
Enable proximity monitoring only when your application
needs to be notified of changes to the proximity state
. Otherwise,
disable proximity monitoring. The default value is NO.

http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/doc/uid/TP40006902-CH3-SW25

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文