19

当我创建一个新的视图控制器时,它的默认代码缩进样式看起来像

- (void)viewDidLoad
{
    [super viewDidLoad];
  // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

我可以更改任何设置,以便默认代码缩进如下所示

- (void)viewDidLoad
{
  [super viewDidLoad];
  // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
  [super didReceiveMemoryWarning];
  // Dispose of any resources that can be recreated.
}
4

1 回答 1

39

从菜单栏中选择 Xcode > Preferences…(默认快捷键:command-comma)。然后单击“文本编辑”部分。然后选择“缩进”选项卡。将“缩进宽度”设置为 2。

Xcode 首选项

您可以通过在项目导航器中选择项目,然后在文件检查器的“文本设置”部分中设置“缩进”值来更改一个项目的缩进宽度:

在此处输入图像描述

您可以要求 Xcode 使用新的缩进宽度重新格式化现有代码,方法是选择代码并从菜单栏中选择 Editor > Structure > Re-Indent(默认快捷键:control-i)。

于 2012-12-29T03:47:18.200 回答