Question

I've an NSTextView with with several semi-colon separated strings. I need to find on which of those strings the caret has been placed. How could I do that?

Was it helpful?

Solution

NSInteger insertionPoint = [[[myTextView selectedRanges] objectAtIndex:0] rangeValue].location;

OTHER TIPS

For Swift 4

let insertionPointIndex = myTextView.selectedRanges.first?.rangeValue.location
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top