IntroViewController.h 461 B

123456789101112131415161718192021222324
  1. //
  2. // IntroViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 9/16/15.
  6. // Copyright (c) 2015 Jason Lee. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomImageView;
  10. @interface IntroViewController : JDViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet CustomImageView *imgvSplash;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLableLtdBottom;
  14. #pragma mark - Instance Methods
  15. @end