Guest User

Untitled

a guest
May 16th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #import <Cocoa/Cocoa.h>
  2.  
  3. @interface SomeClass : NSObject {
  4. }
  5.  
  6. -(void)doSomething;
  7.  
  8. @end
  9.  
  10. #import "SomeClass.h"
  11. #import "Delegate.h"
  12.  
  13. @implementation SomeClass
  14.  
  15. -(void)doSomething {
  16. NSLog(@"doSomething was called on %@", [self className]);
  17. }
  18.  
  19. @end
Add Comment
Please, Sign In to add comment