2016-01-30 4 views

ответ

0

согласно this SO thread:

Вы должны реализовать это в вашем NSTextViewDelegate объекте.

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)commandSelector 
{ 
    if (commandSelector == @selector(insertTab:)) 
    { 
     [aTextView insertText:@"  "]; //this is 8 spaces 
     return YES; 
    } 
    return NO; 
} 
Смежные вопросы