• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - CustomTextField - 自动完成/自动更正不会在点击时关闭

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:01:33 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

所以我使用核心图形创建了一个自定义 TextView ,并使其符合 UITextInput 和 UITextInputTraits 协议(protocol)。除了一种奇怪/烦人的行为外,一切都很好。键盘正确显示自动更正建议,但当用户点击标有“X”的建议时,它不会忽略该建议,而是插入该建议。我已经检查过了,在所有其他程序中,点击带有“X”的建议会驳回该建议。我该如何解决这个问题?

在我的自定义 TextView 中,我有以下 iVar:

//UITextInputTraits
UITextAutocapitalizationType _uiAutoCap;
UITextAutocorrectionType _uiAutoCorrect;
UITextSpellCheckingType _uiSpellCheck;
UIKeyboardType _uiKeyboard;
UIKeyboardAppearance _uiKeyboardAppearance;
UIReturnKeyType _uiReturnType;
BOOL _uiEnableAutoReturn;
BOOL _uiSecureText;

合成到相应的 TextInputTraits 属性:

@synthesize autocapitalizationType=_uiAutoCap, autocorrectionType=_uiAutoCorrect, spellCheckingType=_uiSpellCheck, keyboardType=_uiKeyboard, keyboardAppearance=_uiKeyboardAppearance, returnKeyType=_uiReturnType, inputDelegate=_uiTextDelegate, enablesReturnKeyAutomatically=_uiEnableAutoReturn, secureTextEntry=_uiSecureText;

并且它们使用以下默认值进行初始化:

    _uiAutoCorrect = UITextAutocorrectionTypeDefault;
    _uiSpellCheck = UITextSpellCheckingTypeDefault;
    _uiKeyboardAppearance = UIKeyboardAppearanceDefault;
    _uiAutoCap = UITextAutocapitalizationTypeNone;
    _uiReturnType = UIReturnKeyDefault;
    _uiEnableAutoReturn = NO;
    _uiSecureText = NO;
    _uiKeyboard = UIKeyboardTypeDefault;

有什么想法吗?



Best Answer-推荐答案


编辑:可能的答案

当您点击关闭建议时,您的点击可能首先被您的 View 拦截,这可能会更改文本的选定范围(这会导致 UITextInput 接受建议)。不是最好的解决方案,但 UITextInput 调用

- (NSDictionary *)textStylingAtPositionUITextPosition *)position inDirectionUITextStorageDirection)direction;

当它想要提出建议时,你可以有一个 ivar (BOOL) 来存储是否有建议(在调用 UIKeyInput 方法时将其值设为 NO,在调用 textStyling 方法时设为 YES) .然后,修改您的手势识别器,以便在上述 ivar 为 YES 并且点击位于建议框的矩形中时它不会更改选择(您可以通过将从 - (CGRect) 返回的矩形的高度加倍来获得此矩形firstRectForRangeUITextRange *)range;)。希望有效。

编辑:您应该能够实现 UIGestureRecognizerDelegate 方法:

- (BOOL)gestureRecognizerUIGestureRecognizer *)gestureRecognizer shouldReceiveTouchUITouch *)touch;

只有在 touch.view == (yourTextView) 时才会收到触摸

我遇到了同样的问题,但还没有解决方案;但是,我确实相信您应该通过创建返回您想要的属性值的函数来遵守 UITextInputTraits。示例:要使特征 UITextAutoCorrectionType 的值为 UITextAutocorrectionTypeDefault,您应该提供一个访问器方法:

- (UITextAutocorrectionType)autocorrectionType {
    return UITextAutocorrectionTypeDefault;
}

关于ios - CustomTextField - 自动完成/自动更正不会在点击时关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10915227/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap