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.
15 lines
230 B
15 lines
230 B
4 months ago
|
#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
||
|
|
||
|
@class NSString;
|
||
|
|
||
|
@interface B1
|
||
|
-(id)init;
|
||
|
@end
|
||
|
|
||
|
@interface S1 : B1
|
||
|
-(int)prop;
|
||
|
-(void)setProp:(int)p;
|
||
|
+(id)s1;
|
||
|
-(id)initWithFoo:(NSString*)foo;
|
||
|
@end
|