gpt4 book ai didi

iphone - iOS键盘点击用户偏好

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:53:49 25 4
gpt4 key购买 nike

谁能告诉我如何发现用户在键入时是否启用/禁用了烦人的点击,我想将其用作默认值以指示我是否应该在他们点击某些内容时进行点击。

谢谢你

最佳答案

您无法访问系统首选项,但从 iOS 4.2 开始,如果用户设置允许,您可以要求系统发出点击声音。将 UIInputViewAudioFeedback 协议(protocol)添加到 View 的声明中,例如:

@interface MyView : UIView <UIInputViewAudioFeedback>

然后实现enableInputClicksWhenVisible方法

- (BOOL)enableInputClicksWhenVisible
{
return YES;
}

并调用

[[UIDevice currentDevice] playInputClick];

播放烦人的咔嗒声。

参见 http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/InputViews/InputViews.html%23//apple_ref/doc/uid/TP40009542-CH12-SW4

关于iphone - iOS键盘点击用户偏好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4055230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com