gpt4 book ai didi

ios - 在 UITextView 中输入时更新 UILabel

转载 作者:行者123 更新时间:2023-11-28 11:03:23 26 4
gpt4 key购买 nike

 override func textView(textView: UITextView, shouldChangeTextInRange range: NSRange, replacementText text: String) -> Bool {

label.text = textView.text
return true;
}

有了这段代码,我就好像是后面的一个字符。

最佳答案

shouldChangeTextInRange 将在 文本字段的文本值更改之前调用。

尝试将您的代码放入 textViewDidChange相反:

func textViewDidChange(textView: UITextView) {
label.text = textView.text
}

关于ios - 在 UITextView 中输入时更新 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39823209/

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