blob: da0264d0e1d5f9e317630d5c7b7f299fd8280289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <UIKit/UIKit.h>
@class Brain;
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel * display;
@property (strong, nonatomic) Brain * myBrain;
-(IBAction) numberPressed:(id)sender;
-(IBAction) operationPressed:(id)sender;
-(IBAction) enterPressed:(id)sender;
-(IBAction) clearPressed:(id)sender;
@end
|