菜鸟教程小白 发表于 2022-12-13 15:07:20

objective-c - 如何捕捉 UITextField 文本的变化?


                                            <p><p>我查看了所有类似的问题,它们与我所问的不同。我需要捕捉 UITextField 中实际文本的变化,而不仅仅是编辑状态。当 View 加载时,它将是第一响应者,我需要知道何时输入文本,以便我可以在导航栏中启用“下一步”。如果可以的话,请帮助我,这真的阻碍了我的项目。</p>

<p>补充:我目前正在使用-它不起作用:</p>

<pre><code>;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>实现<code>UITextFieldDelegate</code>协议(protocol),响应<code>textField:shouldChangeCharactersInRange:replacementString:</code>方法。</p>

<pre><code>- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)replacementStr {
    // Enable &#34;Next&#34; if you like what&#39;s entered in the replacementStr
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何捕捉 UITextField 文本的变化?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11604960/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11604960/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何捕捉 UITextField 文本的变化?