| 123456789101112131415161718192021222324 |
- //
- // WelcomeViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @interface WelcomeViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintImgvAvatarTop;
- #pragma mark - Instance Methods
- - (IBAction)btnStartTouched:(id)sender;
- @end
|