gpt4 book ai didi

ios - 在 UITextview 中获取点击的单词

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:04:59 25 4
gpt4 key购买 nike

我添加了一个最初不可编辑的 uitextview。我添加了一个点击手势,使编辑成为真实的。在点击手势选择器中,我得到了被点击的单词。我尝试了很多解决方案,但没有一个对我来说是一个完整的解决方案。如果不滚动 TextView ,则每个解决方案都有效。但是,如果我滚动 TextView ,则不会检索到确切的单词。这是我获取点击单词的代码:

 @objc func handleTap(_ sender: UITapGestureRecognizer) {

notesTextView.isEditable = true
notesTextView.textColor = UIColor.white

if let textView = sender.view as? UITextView {

var pointOfTap = sender.location(in: textView)
print("x:\(pointOfTap.x) , y:\(pointOfTap.y)")

let contentOffsetY = textView.contentOffset.y
pointOfTap.y += contentOffsetY
print("x:\(pointOfTap.x) , y:\(pointOfTap.y)")
word(atPosition: pointOfTap)

}

func word(atPosition: CGPoint) -> String? {
if let tapPosition = notesTextView.closestPosition(to: atPosition) {
if let textRange = notesTextView.tokenizer.rangeEnclosingPosition(tapPosition , with: .word, inDirection: 1) {
let tappedWord = notesTextView.text(in: textRange)
print("Word: \(tappedWord)" ?? "")
return tappedWord
}
return nil
}
return nil
}

编辑:

这是有问题的演示项目。 https://github.com/amrit42087/TextViewDemo

最佳答案

Swift 4 中最好最简单的方法

方法一:

第 1 步:在 TextView 上添加点击手势

let tap = UITapGestureRecognizer(target: self, action: #selector(tapResponse(recognizer:)))

textViewTC.addGestureRecognizer(tap)

第 2 步:实现点击手势

@objc func tapResponse(recognizer: UITapGestureRecognizer) {
let location: CGPoint = recognizer.location(in: textViewTC)
let position: CGPoint = CGPoint(x: location.x, y: location.y)
let tapPosition: UITextPosition = textViewTC.closestPosition(to: position)!
guard let textRange: UITextRange = textViewTC.tokenizer.rangeEnclosingPosition(tapPosition, with: UITextGranularity.word, inDirection: 1) else {return}

let tappedWord: String = textViewTC.text(in: textRange) ?? ""
print("tapped word ->", tappedWord)
}

是的,就是这样。去吧。

方法二:

另一种方法是您可以为 textview 启用链接,然后将其设置为属性。这是一个例子

var foundRange = attributedString.mutableString.range(of: "Terms of Use") //mention the parts of the attributed text you want to tap and get an custom action
attributedString.addAttribute(NSAttributedStringKey.link, value: termsAndConditionsURL, range: foundRange)

将此属性文本设置为 Textview 和 textView.delegate = self

现在你只需要处理

中的响应
func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool {

希望对你有帮助。一切顺利。

关于ios - 在 UITextview 中获取点击的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48474488/

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