12

我有一个带有几个分号分隔的字符串的 NSTextView。我需要找到插入符号放置在哪些字符串上。我怎么能那样做?

4

2 回答 2

29
NSInteger insertionPoint = [[[myTextView selectedRanges] objectAtIndex:0] rangeValue].location;
于 2009-11-09T15:18:44.407 回答
3

对于斯威夫特 4

let insertionPointIndex = myTextView.selectedRanges.first?.rangeValue.location
于 2018-12-04T15:56:26.023 回答