HomeHubStartViewController.h 584 B

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