ios - 选择另一个 UITextView 时,如何阻止 UITextView 退出第一响应者/关闭键盘?
<p><p>我有一个可编辑的 UITextView,然后是一个仅用于选择的 UITextView。当我在第一个 UITextView 中写东西时,有时我想引用另一个 UITextView 来复制文本,然后将其粘贴到第一个中,但是当我选择第二个 UITextView 时,第一个退出第一响应者/关闭键盘。</p>
<p>有没有办法让 UITextView 在选择另一个 UITextView 时不退出第一响应者?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>正如评论中提到的@Tim,以下应该有效:</p>
<pre><code>- (BOOL)textViewShouldEndEditing:(UITextView *)textView
{
return NO;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 选择另一个 UITextView 时,如何阻止 UITextView 退出第一响应者/关闭键盘?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34137083/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34137083/
</a>
</p>
页:
[1]