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
ます)