gpt4 book ai didi

iphone - 在 UITextView 中查找指定单词的 (x,y) 坐标

转载 作者:可可西里 更新时间:2023-11-01 05:41:46 25 4
gpt4 key购买 nike

这是我在 UITextView 中的内容...

==>“‘大都会’用餐体验,提供注重视觉细节和口味的精美食物。”

现在我的问题简单而简短,如何在 TextView 中找到单词“experience”的位置(x,y)。

任何解决方案将不胜感激。

最佳答案

试试这个:

- (CGPoint)getPoint:(UITextView *)textView
{
NSRange range = [textView.text rangeOfString:@"experience"];

UITextPosition *beginning = textView.beginningOfDocument;
UITextPosition *start = [textView positionFromPosition:beginning offset:range.location];
UITextPosition *end = [textView positionFromPosition:start offset:range.length];
UITextRange *textRange = [textView textRangeFromPosition:start toPosition:end];
CGRect rect = [textView firstRectForRange:textRange];
return rect.origin;
}

关于iphone - 在 UITextView 中查找指定单词的 (x,y) 坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14376341/

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