Get X and Y coordinates of a word in UITextView

前端 未结 2 999
醉酒成梦
醉酒成梦 2020-12-01 09:47

I asked a developer (TwoLivesLeft, the creators of Codea) how they did syntax highlighting in their app. He replied :

@TD2 the Codea editor is impleme

相关标签:
2条回答
  • 2020-12-01 10:13

    @bddicken's https://stackoverflow.com/a/11487125/3549781 works like a charm. But the problem is, it doesn't work on iOS 7+ if the text contains a newline "\n". After a lot of searching I found a solution for that.

    You have to ensure the layout of textView before calling firstRectForRange: by

    [textView.layoutManager ensureLayoutForTextContainer:textView.textContainer];
    

    Courtesy : UITextView firstRectForRange not working when there's new line characters in the mix

    P.S : At first I added this as a comment to @bddicken's answer. As most people don't read comments I added this as an answer.

    0 讨论(0)
  • 2020-12-01 10:37

    UITextView conforms to UITextInput, of which a detailed description can be found here.

    Take a look at the required methods "textRangeFromPosition:toPosition:", "positionFromPosition:offset:", "positionFromPosition:inDirection:offset:", and some of the other geometric-based methods in the UITextInput Protocol. Those might provide the functionality you are looking for.

    I have not actually tried to make sure these work the way you want them too, but that looks like its about what you need.

    Let me know if you need any more help!


    UPDATE:

    Here is some sample code of how to do this. I ended up getting the "firstRectForRange:" method to work. This code basically takes the last three letters of the UITextView "textStuff" and highlights it green.

    UITextView *textStuff = [[UITextView alloc] init];
    textStuff.frame = CGRectMake(2.0, 200.0, 200.0, 40.0);
    textStuff.text = @"how are you today?";
    textStuff.textColor = [UIColor blackColor];
    
    UITextPosition *Pos2 = [textStuff positionFromPosition: textStuff.endOfDocument offset: nil];
    UITextPosition *Pos1 = [textStuff positionFromPosition: textStuff.endOfDocument offset: -3];
    
    UITextRange *range = [textStuff textRangeFromPosition:Pos1 toPosition:Pos2];
    
    CGRect result1 = [textStuff firstRectForRange:(UITextRange *)range ];
    
    NSLog(@"%f, %f", result1.origin.x, result1.origin.y);
    
    UIView *view1 = [[UIView alloc] initWithFrame:result1];
    view1.backgroundColor = [UIColor colorWithRed:0.2f green:0.5f blue:0.2f alpha:0.4f];
    [textStuff addSubview:view1];
    

    Result of running this code:

    enter image description here

    0 讨论(0)
提交回复
热议问题