NSTextView
タブの代わりにスペースを使用したい場所があります。私は自分でやりたいとreplaceOccurrencesOfString:withString:options:range:
思っていましたが、うまくいきません(ブレークを元に戻す)。textStorageWillProcessEditing:
textview delegate
そのような機能を実装する方法を知っている人はいますか? それを行う他の方法はありますか?
編集:これは私がtextStorageWillProcessEditing:
メソッドに持っているものです:
ts = [notification object];
[[ts mutableString] replaceOccurrencesOfString:@"\t"
withString:@" "
options:NSLiteralSearch
range:[ts editedRange]];