524f0d335e
^KT-61259
12 lines
234 B
Objective-C
Vendored
12 lines
234 B
Objective-C
Vendored
#import "overrideInit.h"
|
|
|
|
@implementation TestOverrideInit
|
|
-(instancetype)initWithValue:(int)value {
|
|
return self = [super init];
|
|
}
|
|
|
|
+(instancetype)createWithValue:(int)value {
|
|
return [[self alloc] initWithValue:value];
|
|
}
|
|
@end
|