菜鸟教程小白 发表于 2022-12-12 23:04:57

iphone - UITextfield 为空时的自动操作


                                            <p><p>大家好,我正在尝试在 UITextView 变空时启动一个事件。我有一个问题,当 textview 变空时如何触发 Action 。我的意思是每当 UITextView 变空时,下面的 func 就会执行</p>

<pre><code> -(void)textViewIsEmpty
{
      NSLog(@&#34;Text View Is Empty&#34;);
}
</code></pre>

<p>为了自动检测 textView 现在是空的,我遇到了问题。
提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>自从提出这个问题以来,情况可能已经发生了变化,但我想贡献我的答案,因为我正在做类似的事情。</p>

<p>从 Xcode 5 开始,您只需要创建一个方法并将其与 <code>Editing Changed</code> Sent Event 关联即可。</p>

<p>在我的类里面,我创建了一个返回 <code>IBAction</code> 的方法:</p>

<pre><code>- (IBAction)priceFieldEdited:(id)sender {
    ;
}
</code></pre>

<p>然后,我需要做的就是右键单击拖动到类并选择方法。</p>

<p> <img src="/image/wcSbv.png" alt="Example of associating the text field to the method in the class."/> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - UITextfield 为空时的自动操作,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12853426/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12853426/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - UITextfield 为空时的自动操作