| 123456789101112131415161718192021222324 |
- //
- // HomeHubThirdStepViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/23/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface HomeHubThirdStepViewController : 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)btnPrevTouched:(id)sender;
- - (IBAction)btnNextTouched:(id)sender;
- - (IBAction)btnCloseTouched:(id)sender;
- @end
|