| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // StartHomeViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @class CustomTextField2;
- @interface StartHomeViewController : JDViewController
- #pragma mark - Properties
- @property (assign, nonatomic) BOOL canGoBack;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHomeDesc;
- @property (weak, nonatomic) IBOutlet CustomButton *btnHomeIcon;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtHomeName;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSNext;
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
- #pragma mark - Instance Methods
- - (IBAction)btnCreateHomeTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|