mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
11 lines
366 B
Objective-C
11 lines
366 B
Objective-C
@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 |