Guest User

Untitled

a guest
Jun 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2. #import "CalculatorModel.h"
  3.  
  4. @interface CalculatorViewController : UIViewController
  5. {
  6. IBOutlet UILabel *statusText;
  7. CalculatorModel *viewModel;
  8. }
  9.  
  10. @property (retain, nonatomic) UILabel *statusText;
  11. - (IBAction)buttonPressed:(id)sender;
  12.  
  13. - (IBAction)clearButtonPressed:(id)sender;
  14.  
  15.  
  16. @end
  17.  
  18.  
  19. #import <UIKit/UIKit.h>
  20. #import "CalculatorModel.h"
  21.  
  22. @interface CalculatorViewController : UIViewController
  23. {
  24. IBOutlet UILabel *statusText;
  25. CalculatorModel *viewModel;
  26. }
  27.  
  28. @property (retain, nonatomic) UILabel *statusText;
  29. - (IBAction)buttonPressed:(id)sender;
  30.  
  31. - (IBAction)clearButtonPressed:(id)sender;
  32.  
  33.  
  34. @end
Add Comment
Please, Sign In to add comment