objective-c – Uncrustify obj-c:调用super,interface声明和实现声明之前和之后的换行符

概述如何在使用uncrustify调用super之后添加换行符 当前: - (void)someFunction{ [super someFunction]; more stuff; and more stuff;} 期望: - (void)someFunction{ [super someFunction]; more stuff; and more st 如何在使用uncrustify调用super之后添加换行符

当前:

- (voID)someFunction{   [super someFunction];   more stuff;   and more stuff;}

期望:

- (voID)someFunction{   [super someFunction];   more stuff;   and more stuff;}

如何在界面声明和实现声明之前和之后添加换行符

当前:

@interface SCLoginScreenVIEwController ()@property (weak,nonatomic) IBOutlet UIVIEw *someVIEw;@property (weak,nonatomic) IBOutlet UIVIEw *anotherVIEw;@end@implementation SCLoginScreenVIEwController- (voID)someFunction{}

期望:

@interface SCLoginScreenVIEwController ()@property (weak,nonatomic) IBOutlet UIVIEw *anotherVIEw;@end@implementation SCLoginScreenVIEwController- (voID)someFunction{}

>我正在使用BBUncrustifyPlugin和UncrustifyX

解决方法 不幸的是,Uncrustify目前不支持任何这些功能

唯一的“新行后”选项如下所示.

(两个未包含在屏幕截图中的是:变量定义块之后的换行计数和变量定义块之后的换行计数不在函数体的顶部)

“换行”部分还有其他一些选项.但同样,它们都不符合你的情况:

(截屏后遗漏的新线)


 1.我使用的是版本2.1.1,我相信这是最新版本

总结

以上是内存溢出为你收集整理的objective-c – Uncrustify obj-c:调用super,interface声明和实现声明之前和之后的换行符全部内容,希望文章能够帮你解决objective-c – Uncrustify obj-c:调用super,interface声明和实现声明之前和之后的换行符所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1040519.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存