HomeHubThirdStepViewController.h 609 B

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