菜鸟教程小白 发表于 2022-12-12 09:44:33

iOS:使用 UITextField 子类检测空 UITextField 中的退格


                                            <p><p>检测退格的明确答案是创建 UITextField 的子类并覆盖 <code>deleteBackward</code> 属性。</p>

<p>我已经创建了一个 UITextField 子类的子类,但是我得到了这个错误:</p>

<p><code>'NSInvalidArgumentException',原因:'-:无法识别的选择器发送到实例</code></p>

<p>这是我的子类代码:</p>

<p>我的 TextField.h:</p>

<pre><code>@protocol MyTextFieldDelegate &lt;NSObject&gt;
@optional
- (void)textFieldDidDelete;
@end

@interface MyTextField : UITextField&lt;UIKeyInput&gt;
//create &#34;myDelegate&#34;
@property (nonatomic, assign) id&lt;MyTextFieldDelegate&gt; myDelegate;
@end
</code></pre>

<p>我的 TextField.m:</p>

<pre><code>- (void)deleteBackward {
    ;

    if (){
      ;
    }
}
</code></pre>

<p>在我想要访问 UITextField 子类的 ViewController 中,我执行以下操作:</p>

<pre><code> #import &#34;MyTextField.h&#34;

&lt;MyTextFieldDelegate&gt;
@property (nonatomic, strong) IBOutlet MyTextField *passcode1;
self.passcode1.myDelegate = self;
</code></pre>

<p>关于我为什么会收到无法识别的选择器错误的任何想法?在我看来,我在子类化 UITextField 方面做的一切都是正确的。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>问题出在您的 socket 上。该属性是使用您的自定义类定义的,但在 Interface Builder 中,您添加了一个普通的旧 UITextField。因此运行时的错误。在 Interface Buldier 中,将文本字段的类更新为您的自定义类。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS:使用 UITextField 子类检测空 UITextField 中的退格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33765662/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33765662/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS:使用 UITextField 子类检测空 UITextField 中的退格