Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本视图,当我向右滑动时,它会将文本粘贴到其中。唯一的问题是我无法编辑文本视图。在我将滑动手势放到 textview 上后,它不再允许我编辑文本。一旦我取消手势,它就会再次起作用。
有谁知道为什么会发生这种情况或如何解决?
尝试在您的文本字段上调用:
[yourTextField becomeFirstResponder];
告诉我这是否有帮助。
当我将滑动手势拖到我的应用程序上时,我将它拖到了文本视图本身上。通过这样做,它不允许我编辑我的文本视图。当我将滑动手势应用到我的视图而不是 textview 时,它允许我滑动以粘贴到该 textview 中,同时仍然可以对其进行编辑。