iPad SDK。键盘关闭按钮不起作用
我的 iPad 应用程序出现问题,当我单击键盘关闭按钮时,没有任何反应。 我不知道是否有什么东西覆盖了它或者它可能是什么。
当我非常快地单击它时,它会按一次,然后您必须等待一两秒钟才能单击它再次。
在我所有显示键盘的视图中,这个问题在全球范围内发生。
Having a problem with my app for iPad, that when i click the keyboard dismiss button, nothing happens.
I don't know if something is overwriting it or what it could possibly be.
When i click it really fast it presses once then you have to wait a second or two until you can click it again.
This problem is happening globally in all my views that show the keyboard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能对你没有帮助,但就我而言,我遇到了同样的问题,只有 uitextviews (这很奇怪)
事实证明我正在使用 ios[redacted] 并尝试使用 mainwindow.xibs 作为我的主窗口,就像我们在旧版 xcode 中所做的那样。
出于某种原因,现在它的工作方式不一样了(也许在故事板之后?),所以你需要放弃你的 mainwindow.xib 并执行代码中的任何设置。
这样做之后我的 uitextviews 工作了。
很奇怪。
might not help you but in my case i had the same problem, only with uitextviews (which is odd)
and it turns out i was using ios[redacted] and was trying to use mainwindow.xibs for my main window like how we would in older xcodes.
some reason this doesnt work the same now(maybe after storyboards?) so you need to ditch your mainwindow.xib and do whatever setup was in there in code.
after doing that my uitextviews worked.
very strange.