How do I use SPACE instead of TAB in NSTextView

此生再无相见时 提交于 2019-12-10 03:39:46

问题


I just know how to modify the tab width in NSTextView

NSMutableParagraphStyle *paragraphStyle = [[self defaultParagraphStyle] mutableCopy];
[paragraphStyle setTabStops:[NSArray array]];
[paragraphStyle setDefaultTabInterval: tabWidth]; 

But, is there any way to use 4 SPACES instead of TAB in NSTextView?


回答1:


Well, it's late, but I'll post my answer in case some other poor soul is struggling with this.

I''ve been struggling with this all day, and finally found the answer at cocoabuilder

In summary, what I did was, in my text view delegate:

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)commandSelector {
    if (commandSelector == @selector(insertTab:)) {
        [aTextView insertText:@"    "];
        return YES;
    }
    return NO;
}

Seems to work fine.

Undo works also.



来源:https://stackoverflow.com/questions/9450982/how-do-i-use-space-instead-of-tab-in-nstextview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!