forked from OSchip/llvm-project
12 lines
169 B
C
12 lines
169 B
C
|
@interface ObjCClass {
|
||
|
int ivar;
|
||
|
}
|
||
|
+ classMethod;
|
||
|
- instanceMethodWithInt:(int)i;
|
||
|
@property int property;
|
||
|
@end
|
||
|
|
||
|
@interface ObjCClass (Category)
|
||
|
- categoryMethod;
|
||
|
@end
|