-1

ALL,

Is there an equivalent for EM_LINEFROMCHAR/EM_LINEINDEX Windows notification in OSX/Cocoa? I couldn't find anything looking here.

Basically I'm looking to give a position and receive (x,y) coordinate inside the view.

Igor
  • 5,620
  • 11
  • 51
  • 103

1 Answers1

0

See - (CGPoint)locationForGlyphAtIndex:(NSUInteger)glyphIndex; of NSLayoutManager.

You may wanna read on the relation between NSTextView, NSTextStorage and NSLayoutManager.

https://developer.apple.com/reference/uikit/nslayoutmanager/1403239-locationforglyphatindex?language=objc

catlan
  • 25,100
  • 8
  • 67
  • 78