1 2 3 4 5 6 7 8 9 10 11 12 13
// // InitialViewController.h // DUREX Vendor Control // // Created by Imanol Barba on 5/22/14. // Copyright (c) 2014 Emmoco. All rights reserved. // #import <UIKit/UIKit.h> @interface InitialViewController : UIViewController @property (nonatomic,strong) IBOutlet UIButton *connectButton;
14
@property (nonatomic,strong) IBOutlet UILabel *label;
15 16 17 18
- (IBAction) connectPressed:(UIButton*)button; @end