HomeHubSecondStepViewController.h 653 B

123456789101112131415161718192021222324252627
  1. //
  2. // HomeHubSecondStepViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/22/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomButton;
  10. @class CustomLabel;
  11. @interface HomeHubSecondStepViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet UIView *maskView;
  14. @property (weak, nonatomic) IBOutlet UIView *popView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  16. #pragma mark - Instance Methods
  17. - (IBAction)btnPrevTouched:(id)sender;
  18. - (IBAction)btnNextTouched:(id)sender;
  19. - (IBAction)btnCloseTouched:(id)sender;
  20. @end