You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
283 B
14 lines
283 B
4 months ago
|
#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
||
|
|
||
|
@class NSString;
|
||
|
|
||
|
@interface B1
|
||
|
-(instancetype)init;
|
||
|
@end
|
||
|
|
||
|
@interface S1 : B1
|
||
|
@property (nonatomic) int prop;
|
||
|
+(instancetype)s1;
|
||
|
-(instancetype)initWithFoo:(NSString*)foo NS_DESIGNATED_INITIALIZER;
|
||
|
@end
|