| 123456789101112131415161718192021222324 |
- //
- // IntroViewController.h
- // kneet2
- //
- // Created by Jason Lee on 9/16/15.
- // Copyright (c) 2015 Jason Lee. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomImageView;
- @interface IntroViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvSplash;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLableLtdBottom;
- #pragma mark - Instance Methods
- @end
|