Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get word from tap in UITextView

I'm trying to get a word from a tap. The following function's sender is from the UIGesture on the UITextView, sentence.

- (IBAction)printWordSelected:(id)sender {
    NSLog(@"Clicked");

    CGPoint pos = [sender locationInView:self.view];
    UITextView *_tv = sentence;

    NSLog(@"Tap Gesture Coordinates: %.2f %.2f", pos.x, pos.y);

    //eliminate scroll offset
    pos.y += _tv.contentOffset.y;

    //get location in text from textposition at point
    UITextPosition *tapPos = [_tv closestPositionToPoint:pos];

    //fetch the word at this position (or nil, if not available)
    UITextRange * wr = [_tv.tokenizer rangeEnclosingPosition:tapPos withGranularity:UITextGranularityWord inDirection:UITextLayoutDirectionRight];

    NSLog(@"WORD: %@", [_tv textInRange:wr]);
}

This is what I already have, but it prints the word out as NULL

like image 242
KBouldin9 Avatar asked Oct 14 '12 17:10

KBouldin9


1 Answers

"Try changing pos to pos = [sender locationInView:_tv] and then remove the pos.y adjustment. – rmaddy"

like image 188
KBouldin9 Avatar answered Sep 21 '22 21:09

KBouldin9