// // ChangeEmailViewController.h // kneet // // Created by Jason Lee on 5/13/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @class CustomTextField2; @class CustomLabel; @class CustomButton; @interface ChangeEmailViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserEmail; @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2; @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