如何在使用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 *someView;
@property (weak, nonatomic) IBOutlet UIView *anotherView;
@end
@implementation SCLoginScreenViewController
- (void)someFunction
{
}