菜鸟教程小白 发表于 2022-12-12 19:45:38

iphone - 访问其他文本字段时如何使其他文本字段的键盘消失


                                            <p><p>我的 View 中有两个文本字段。我是用 IB 做的。在第二个文本字段中,我正在使用操作表</p>

<p>在 textField1 中输入文本后,我在文本 Field-2 中。在第二个文本字段中,我使用带有选择器的操作表来选择日期。所以我在打开操作表之前退出了 textfield -2 键盘。在我试图退出键盘时关闭操作表后,它没有返回。
我用过</p>

<pre><code>- (BOOL)textFieldShouldReturn:(UITextField *)textField{
    ;
    return YES;
}
</code></pre>

<p>辞职 textfield1 .. </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>- (void) viewDidLoad
{
   //don&#39;t forget to add &lt;UITextFieldDelegate&gt; in your .h
   firstTextField.delegate=self;
   secondTextField.delegate=self;
}

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
    if(textField.tag==2)
    {
      //Here you can call function to view your datepicker
      return NO; //Will not open keyboard for second textfield.
    }
    return YES;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    ;
    return YES;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 访问其他文本字段时如何使其他文本字段的键盘消失,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9781941/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9781941/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 访问其他文本字段时如何使其他文本字段的键盘消失