我正在Xcode上创建一个文本编辑器,但是我需要知道如何在文本视图中更改选项卡大小,因为它默认为8,但我喜欢它在4.有没有办法做此?
答案 0 :(得分:0)
您需要在NSTextViewDelegate
对象中实现此功能。
- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)commandSelector
{
if (commandSelector == @selector(insertTab:))
{
[aTextView insertText:@" "]; //this is 8 spaces
return YES;
}
return NO;
}