菜鸟教程小白 发表于 2022-12-13 14:01:33

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


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

<p>在我的自定义 TextView 中,我有以下 iVar:</p>

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

<p>合成到相应的 TextInputTraits 属性:</p>

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

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

<pre><code>    _uiAutoCorrect = UITextAutocorrectionTypeDefault;
    _uiSpellCheck = UITextSpellCheckingTypeDefault;
    _uiKeyboardAppearance = UIKeyboardAppearanceDefault;
    _uiAutoCap = UITextAutocapitalizationTypeNone;
    _uiReturnType = UIReturnKeyDefault;
    _uiEnableAutoReturn = NO;
    _uiSecureText = NO;
    _uiKeyboard = UIKeyboardTypeDefault;
</code></pre>

<p>有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><h2>编辑:可能的答案</h2>

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

<pre><code>- (NSDictionary *)textStylingAtPosition:(UITextPosition *)position inDirection:(UITextStorageDirection)direction;
</code></pre>

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

<p><strong>编辑:</strong>您应该能够实现 UIGestureRecognizerDelegate 方法:</p>

<pre><code>- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch;
</code></pre>

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

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

<pre><code>- (UITextAutocorrectionType)autocorrectionType {
    return UITextAutocorrectionTypeDefault;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CustomTextField - 自动完成/自动更正不会在点击时关闭,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10915227/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10915227/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CustomTextField - 自动完成/自动更正不会在点击时关闭