Guest User

Untitled

a guest
Dec 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. //
  2. // RubricaAppDelegate.h
  3. // Rubrica
  4. //
  5. // Created by Domenico Fabio Lombardo on 11/09/11.
  6. // Copyright 2011 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10.  
  11. #import "Persona.h"
  12.  
  13. @interface RubricaAppDelegate : NSObject <NSApplicationDelegate, NSTableViewDataSource> {
  14. NSWindow *window;
  15. NSTableView *tableView;
  16. NSTextField *campoNome;
  17. NSTextField *campoCognome;
  18. NSTableColumn *colonnaNome;
  19. NSTableColumn *colonnaCognome;
  20. }
  21.  
  22. @property (assign) IBOutlet NSWindow *window;
  23.  
  24. @property (assign) IBOutlet NSTableView *tableView;
  25. @property (assign) IBOutlet NSTextField *campoNome;
  26. @property (assign) IBOutlet NSTextField *campoCognome;
  27.  
  28. @property (retain) NSMutableArray* persone;
  29. @property (assign) IBOutlet NSTableColumn *colonnaNome;
  30. @property (assign) IBOutlet NSTableColumn *colonnaCognome;
  31.  
  32. - (IBAction)creaPersona:(id)sender;
  33. - (IBAction)salva:(id)sender;
  34.  
  35. @end
Add Comment
Please, Sign In to add comment