SignUpCompleteViewController.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // SignUpCompleteViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/27/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @interface SignUpCompleteViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblHomeDesc;
  15. @property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
  16. @property (weak, nonatomic) IBOutlet UIView *childContainerView;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnRegisterLater;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintChildContainerViewHeight;
  19. #pragma mark - Instance Methods
  20. - (IBAction)bannerWallPadTouched:(id)sender;
  21. - (IBAction)bannerWallPadSubTouched:(id)sender;
  22. - (IBAction)bannerDawonTouched:(id)sender;
  23. - (IBAction)bannerLiveCamTouched:(id)sender;
  24. - (IBAction)bannerPhoneTouched:(id)sender;
  25. - (IBAction)btnRegisterLaterTouched:(id)sender;
  26. @end