如何使用uncrustify在#pragma mark之前添加新行?

时间:2011-11-14 14:53:00

标签: objective-c uncrustify

是否有可能在#pragma mark -指令之前/之后添加一些空行? 如果这很重要,我指的是objC中的Xcode 4.2和iOS开发。

[编辑]我的意思是如下:

// Some code here, and then 1 empty line

#pragma mark - Whatever

// Some other code here, after 1 empty line

变得使用uncrustify:

// Some code here, and then 2 empty lines


#pragma mark - Whatever


// Some other code here, after 2 empty lines

1 个答案:

答案 0 :(得分:0)

我不认为这是可能的。不是因为Uncrustify的限制,而是因为XCode的限制。

这两个块在XCode中的行为相同:

#pragma mark
#pragma mark
#pragma mark
#pragma mark -

// MARK: 
// MARK: 
// MARK: 
// MARK: 
// MARK: -

尝试将上面的几行插入到任何源代码文件中。您很快就能看到XCode为每个空白#pragma mark行显示下划线。