ChangeNameViewController.h 694 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ChangeNameViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/13/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomTextField2;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ChangeNameViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserName;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnConfirmTouched:(id)sender;
  20. - (IBAction)btnCancelTouched:(id)sender;
  21. @end