菜鸟教程小白 发表于 2022-12-12 14:07:38

ios - 清除带有secureTextEntry = YES 的UITextField 时是否触发事件?


                                            <p><p>我有一个 <code>secureTextEntry = YES</code> 的 UITextField 实例。当该字段首次获得焦点时,任何按键都会清除该字段,这似乎是 iOS 上的标准行为。</p>

<p>据我所知,<code>UIControlEventEditingChanged</code> 没有被触发。我也尝试订阅 <code>UIControlEventAllEditingEvents</code> 但它似乎没有被触发。这给我带来了一个问题,因为我依赖于知道何时编辑该字段来设置 UIButton 的 <code>enabled</code> 属性。</p>

<p>以这种方式清除字段时是否会触发事件?</p>

<p>可以在 <a href="https://github.com/ReactiveCocoa/ReactiveCocoa/issues/779" rel="noreferrer noopener nofollow">GitHub issue</a> 中看到他们围绕我的问题的上下文.</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用 UITextField 的委托(delegate):</p>

<pre><code>- (BOOL) textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    NSString *newText = ;
    ;
    return YES;
}

- (BOOL)textFieldShouldClear:(UITextField *)textField {
    ;
    return YES;
}

- (void) updateButton {
    someButton.enabled = NO;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 清除带有secureTextEntry = YES 的UITextField 时是否触发事件?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18604488/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18604488/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 清除带有secureTextEntry = YES 的UITextField 时是否触发事件?