Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @interface MYAppDelegate : NSObject <NSApplicationDelegate> {
  2.     NSWindow *window;
  3.  
  4.     IBOutlet NSTextField *ip;
  5.  
  6. }
  7.  
  8. @implementation MyAppDelegate
  9.  
  10. @synthesize window;
  11. @synthesize ip;
  12.  
  13. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  14.     // Insert code here to initialize your application 
  15.    
  16.     NSLog(@"%@", ip);
  17.     [ip setStringValue:@"hey"];
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement