vote up 1 vote down star

I have an NSTextView and require the coordinates of the insertion point to display a view there upon user interaction.

There is a function to get the character index from an NSPoint. I am wondering if there is any easy way to do the opposite?

Thanks for any help!

flag

62% accept rate

2 Answers

vote up 3 vote down check

Sure: [textView firstRectForCharacterRange:[textView selectedRange]];

link|flag
Thank you, this worked very well in a nice simple line of code! – jeffp Aug 28 at 17:18
vote up 1 vote down

You might be able to do it with an NSTextView subclass, overriding -drawInsertionPointInRect:color:turnedOn: to cache the drawing rect and using the center of the rect (or some other interior point).

NB: I haven't tried this.

link|flag
Thank you for offering a solution. I ended up going with [textView firstRectForCharacterRange:[textView selectedRange]]; – jeffp Aug 28 at 17:20
Aha, good find! – Wevah Aug 28 at 21:13

Your Answer

Get an OpenID
or

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