summary refs log tree commit diff stats
path: root/examples/cross_calculator/ios/src/NRViewController.h
blob: 36ba37758c04b9278ff61c283da30a42b8bea06d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
@interface NRViewController : UIViewController

@property (nonatomic, retain) IBOutlet UIButton *calculateButton;
@property (nonatomic, retain) IBOutlet UITextField *aText;
@property (nonatomic, retain) IBOutlet UITextField *bText;
@property (nonatomic, retain) IBOutlet UILabel *resultLabel;

- (IBAction)calculateButtonTouched;
- (IBAction)backgroundTouched;

@end