gpt4 book ai didi

ios - UITextDropDelegate willPerformDrop 没有被调用

转载 作者:行者123 更新时间:2023-11-29 05:11:41 25 4
gpt4 key购买 nike

我正在尝试为 UITextView 实现拖放功能。我已经设置了委托(delegate)\

textView.dropDelegate = self

并实现

func textDroppableView(_ textDroppableView: UIView & UITextDroppable, willPerformDrop drop: UITextDropRequest)

但是上述代表没有被调用。其他委托(delegate)函数(例如 dropSessionDidEnter 和 dropSessionDidEnd)似乎正在被调用。

请帮忙。

最佳答案

试试这个

class className: UIViewController{
override func viewDidLoad{
super.viewDidLoad()
textView.delegate = self
}

}
extension className: UITextDropDelegate{
func textDroppableView(_ textDroppableView: UIView & UITextDroppable,
willPerformDrop drop: UITextDropRequest){
//perform actions here.
}
}

关于ios - UITextDropDelegate willPerformDrop 没有被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59623785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com