| 123456789101112131415161718192021222324252627282930313233 |
- //
- // ThingsAddCompleteViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/26/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @interface ThingsAddCompleteViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintImgvAvatarTop;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
- @property (weak, nonatomic) IBOutlet CustomButton *btnAddMore;
- #pragma mark - Instance Methods
- - (IBAction)btnNextTouched:(id)sender;
- - (IBAction)btnAddMoreTouched:(id)sender;
- @end
|