| 1234567891011121314151617181920212223242526272829 |
- //
- // RulesAddCompleteViewController.h
- // kneet2
- //
- // Created by Jason Lee on 11/26/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @interface RulesAddCompleteViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UIView *maskView;
- @property (weak, nonatomic) IBOutlet UIView *popView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet CustomButton *btnAction;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnCompleteTouched:(id)sender;
- @end
|