| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // ConfirmPwdViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/13/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class HomeGroupModel;
- @class CustomTextField2;
- @class CustomLabel;
- @class CustomButton;
- @interface ConfirmPwdViewController : JDViewController
- #pragma mark - Properties
- @property (strong, nonatomic) NSString *popupName;
- @property (weak, nonatomic) HomeGroupModel *homegrp;
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserPwd;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- #pragma mark - Instance Methods
- - (IBAction)btnConfirmTouched:(id)sender;
- - (IBAction)btnCancelTouched:(id)sender;
- @end
|