Guest User

Untitled

a guest
Jun 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 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. @property (retain, nonatomic) UILabel *statusText;
  14. - (IBAction)clearButtonPressed:(id)sender;
  15.  
  16.  
  17.  
  18.  
  19. @end
Add Comment
Please, Sign In to add comment