菜鸟教程小白 发表于 2022-12-13 13:14:19

ios - 在编辑期间移动到另一个 View 时出现 UITextView 问题


                                            <p><p>我有一个 <code>UITextView</code>,我在其中设置了代码以在键盘出现时提升 View 。问题是 <strong><em>当我编辑 TextView(键盘可见时)时,如果我单击一个按钮以重定向到另一个 View ,我会在另一个 View 中看到键盘 1 秒钟,然后它就消失了</em></strong> 。谁能告诉我它是怎么来的,请帮我删除它。提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong>原因</strong>
键盘隐藏动画,需要一点时间。您应该在导航到其他 View 之前隐藏键盘。
当 View 消失时,您可以辞职第一响应者。</p>

<p><strong> Objective-C </strong></p>

<pre><code>-(void) viewWillDisappear:(BOOL)animated{ // Add this function in your ViewController

       ;

}
</code></pre>

<p><strong>Swift 2.0</strong></p>

<pre><code>override func viewWillDisappear(animated: Bool) { // Add this function in your ViewController
    self.YourTextField.resignFirstResponder()
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在编辑期间移动到另一个 View 时出现 UITextView 问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35936668/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35936668/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在编辑期间移动到另一个 View 时出现 UITextView 问题