如何從Swift中的NSTextView中獲取選定的字符串?如何從Swift中的NSTextView中獲取選定的字符串?
// create a range of selected text
let range = mainTextField.selectedRange()
// this works but I need a plain string not an attributed string
let str = mainTextField.textStorage?.attributedSubstring(from: range)
也許我必須添加一箇中間步驟,我得到完整的字符串,然後在其上應用範圍?
的http://計算器。 COM /問題/ 14024124 /獲取選擇高亮顯示的文本字符串-from-nstextview-objective-c –
謝謝Mitesh,但是我在Swift中編程而不是Objective-C。 – Cue