菜鸟教程小白 发表于 2022-12-12 22:17:58

ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现


                                            <p><p>我使用日期选择器作为文本字段的输入 View 。
在 View 中会出现我添加了 <code>UIKeyboardWillShowNotification</code>。</p>

<p>我的问题是,当要看到日期选择器时,它也会出现 <code>KeyboardWillShowNotification</code> 方法。我如何区分看到键盘或看到日期选择器,因为我需要根据它调整表格 View 的大小</p>

<p>我已经在 <code>textfieldDidBeginEditing</code></p> 中分配了 inputview

<pre><code>cell.txtField.inputView = datePicker;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以实现 <code>(BOOL)textFieldShouldBeginEditing:(UITextField *)textField</code> 委托(delegate),然后保存您正在编辑文本字段的局部变量,例如</p>

<pre><code>- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
   self.editingTextfield = YES;
}
</code></pre>

<p>并在您的 <code>(BOOL)textFieldShouldEndEditing:(UITextField *)textField</code> 中将该标志设置为 <code>false</code></p>

<pre><code>-(BOOL)textFieldShouldEndEditing:(UITextField *)textField {
   self.editingTextfield = NO;
}
</code></pre>

<p>在您的 <code>KeyboardWillShowNotification</code> 通知中,您可以检查该标志以查看哪个控件发出了键盘</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23759360/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23759360/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 当文本字段的输入 View 不同时 UIKeyboardWillShowNotification 出现