| 12345678910111213141516171819202122232425 |
- //
- // HomeHubStartViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/20/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @interface HomeHubStartViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnNextTouched:(id)sender;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
|