WelcomeViewController.h 487 B

123456789101112131415161718192021222324
  1. //
  2. // WelcomeViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @interface WelcomeViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintImgvAvatarTop;
  14. #pragma mark - Instance Methods
  15. - (IBAction)btnStartTouched:(id)sender;
  16. @end