GoodbyeViewController.h 609 B

12345678910111213141516171819202122232425262728
  1. //
  2. // GoodbyeViewController.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 CustomLabel;
  10. @class CustomButton;
  11. @interface GoodbyeViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc3;
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnAgain;
  17. #pragma mark - Instance Methods
  18. - (IBAction)btnAgainTouched:(id)sender;
  19. @end