| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // ThingsAddCameraViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/26/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomTextField2;
- @class CustomLabel;
- @class CustomButton;
- @interface ThingsAddCameraViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep1Title;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep2Title;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblStep3Title;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamId;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamPwd;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamURL;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtFoscamPort;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- #pragma mark - Instance Methods
- - (IBAction)btnConfrimTouched:(id)sender;
- @end
|