Advertisement
Guest User

asdfasdfasdf

a guest
Nov 27th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import "AppDelegate.h"
  2.  
  3. @interface AppDelegate ()
  4.  
  5. @property (weak) IBOutlet NSWindow *window;
  6. @end
  7.  
  8. @implementation AppDelegate
  9.  
  10. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  11.     // Insert code here to initialize your application
  12.     self.mainLabel.textColor = [NSColor greenColor];
  13.     [self.mainLabel setStringValue:@"Test"];
  14. }
  15.  
  16. - (void)applicationWillTerminate:(NSNotification *)aNotification {
  17.     // Insert code here to tear down your application
  18. }
  19.  
  20. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement