| 1 | #import <objc/NSObject.h> |
|---|---|
| 2 | |
| 3 | @interface IAmBlocky : NSObject |
| 4 | { |
| 5 | @public |
| 6 | int blocky_ivar; |
| 7 | } |
| 8 | + (void) classMethod; |
| 9 | - (IAmBlocky *) init; |
| 10 | - (int) callABlock: (int) block_value; |
| 11 | @end |
| 12 |
| 1 | #import <objc/NSObject.h> |
|---|---|
| 2 | |
| 3 | @interface IAmBlocky : NSObject |
| 4 | { |
| 5 | @public |
| 6 | int blocky_ivar; |
| 7 | } |
| 8 | + (void) classMethod; |
| 9 | - (IAmBlocky *) init; |
| 10 | - (int) callABlock: (int) block_value; |
| 11 | @end |
| 12 |