| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // SignUpCompleteViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/27/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @interface SignUpCompleteViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHomeDesc;
- @property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
- @property (weak, nonatomic) IBOutlet UIView *childContainerView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnRegisterLater;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintChildContainerViewHeight;
- #pragma mark - Instance Methods
- - (IBAction)bannerWallPadTouched:(id)sender;
- - (IBAction)bannerWallPadSubTouched:(id)sender;
- - (IBAction)bannerDawonTouched:(id)sender;
- - (IBAction)bannerLiveCamTouched:(id)sender;
- - (IBAction)bannerPhoneTouched:(id)sender;
- - (IBAction)btnRegisterLaterTouched:(id)sender;
- @end
|