12 lines
180 B
C
12 lines
180 B
C
|
#import <objc/NSObject.h>
|
||
|
|
||
|
@interface IAmBlocky : NSObject
|
||
|
{
|
||
|
@public
|
||
|
int blocky_ivar;
|
||
|
}
|
||
|
+ (void) classMethod;
|
||
|
- (IAmBlocky *) init;
|
||
|
- (int) callABlock: (int) block_value;
|
||
|
@end
|