在Uncrustify通过后,我想要这个代码块:
@implementation MyClass
- (instancetype)init
{
self = [super init];
if (self) {
}
return self;
}
看起来像:
@implementation VICameraOverlayViewController
- (instancetype)init
{
self = [super init];
if (self) {
}
return self;
}
@interface
@interface MyClass : UIViewController
- (void)initWithBlurSource:(id)blurSource;
@end
到
@interface MyClass : UIViewController
- (void)initWithBlurSource:(id)blurSource;
@end
(是的,还有@end
之前的额外行