nstextview- все статьи тега


Как реализовать отмену с помощью NSTextview

Я хочу реализовать действие отмены после замены части текста в NSTextView. Я заменяю часть текста следующим кодом - (void)omeAction { NSString *fullString = [self.textView string]; NSRange selectedRange = [self.textView selectedRange]; NSString *selectedString = [fullString substringWithRange:selectedRange]; NSString *stringToReplace = ...; [[self.textView textStorage] beginEditing]; [[self.textView textStorage] replaceCharactersInRange:selectedRange withString:stringT ...