标签: ios swift uitextview
我正在处理聊天应用程序。我能够将简单的字符串复制并粘贴到textview中。我想检测用户何时尝试粘贴图像。我不想使用UITextPasteDelegate,因为我也在shouldChangeCharater(_:,:) Delegate中自定义文本样式。我尝试创建UITextView方法的override到Paste(sender: Any?)的子类,但是这些方法中没有解决方案适合我的要求。有什么办法可以检测到同样的东西吗?
UITextPasteDelegate
shouldChangeCharater(_:,:)
Delegate
UITextView
override
Paste(sender: Any?)