在自定义视图上显示弹出菜单时不要关闭键盘

发布于 2024-09-18 07:00:45 字数 172 浏览 4 评论 0原文

我创建了自己的 UIView 子类来向用户呈现文本信息。用户可以双击该视图来弹出“复制”菜单。问题是同一视图控制器中的 UITextView 放弃其第一响应者状态,从而在弹出菜单出现时关闭键盘。我该如何避免这种情况?我希望我的应用程序的行为类似于标准 iPhone 的消息应用程序:双击消息气泡时键盘不会消失,会显示一个弹出菜单。

I created my own UIView subclass to present text information to the user. User is able to double tap this view to popup a 'Copy' menu. The problem is that UITextView within the same view controller resigns its first responder status thus dismissing keyboard when popup menu is presented. How do I avoid this? I want my application to behave like standard iPhone's Messages application: keyboard is not dismissed while double tapping on message bubble presents a popup menu.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福不弃 2024-09-25 07:00:45

保留 UITextView 的引用。并在消息气泡的选择器中首先创建文本视图
响应者例如-
popUpclicked{
[textView 成为firstResponder]
}

或将 userinteractionEnable 属性设置为 NO 可能会起作用...

keep the refrence of UITextView . and in selector of message bubble make text view first
responder eg-
popUpclicked{
[textView becomefirstResponder]
}

or make userinteractionEnable property to NO may be it work...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文