2

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

4

0 に答える 0