gpt4 book ai didi

ios - 自定义键盘: get notified when text updates

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

当自定义键盘正在修改的文本更新时,UIInputViewController中是否有方法? textWillChange/textDidChange 仅通知我有关光标移动的信息。

最佳答案

子类UIInputView。在您的子类中,设置一个协议(protocol)

protocol MyCustomInputViewDidChangeDelegate {
func customInputViewDidChange(customInputView: MyCustomInputView)
}

class MyCustomInputView: UIInputView {
var delegate: MyCustomInputViewDidChangeDelegate?
}

您将使 UIInputViewController 符合 MyCustomInputViewDidChangeDelegate 当触摸您的自定义键盘时,在适当的时候通过调用 delegate?.customInputViewDidChange(self )

关于ios - 自定义键盘: get notified when text updates,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39302008/

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