Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Now I already detect long tap in UITextView

    - (void)viewDidLoad
    {
         [super viewDidLoad];
         UILongPressGestureRecognizer *LongPressgesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPressFrom:)];    
         [[self textview] addGestureRecognizer:LongPressgesture];
         longPressGestureRecognizer.delegate = self;
    }
    - (void) handleLongPressFrom: (UISwipeGestureRecognizer *)recognizer
    {
         CGPoint location = [recognizer locationInView:self.view];

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

Now, How should I do to get content of word which got long press, and get a rect of that word to prepare to show the PopOver?

share|improve this question

1 Answer

up vote 4 down vote accepted

This function will return the word at a given position in an UITextView.

+(NSString*)getWordAtPosition:(CGPoint)pos inTextView:(UITextView*)_tv
{
    //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];

    return [_tv textInRange:wr];
}
share|improve this answer
You might want to check out the rangeEnclosingPosition:withGranularity:inDirection: method of the text view's tokenizer property. – rob mayoff Jul 12 '12 at 0:04
Thank you rob, that makes it much simpler! I've edited the answer to include your suggestion. – cayeric Jul 12 '12 at 7:44
Is there a way to do this backwards like get position of a word? – TheDeveloper Jul 21 '12 at 21:18
@TheDeveloper The UITextInput protocol provides a function i use if i want to know the UITextPosition of a specific offset (i.e. the char location in a string) of an UITextView: positionFromPosition:(UITextPosition *)startPosition offset:(NSInteger)offset. The startPosition could be tv.beginningOfDocument (if your Textview is named 'tv') and the offset the location of the word in the string assigned as text to the textview. To get the layout point at the returned position use the origin of the rect from caretRectForPosition: – cayeric Jul 25 '12 at 13:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.