| 123456789101112131415161718192021222324252627282930313233 |
- //
- // RulesAddCompleteViewController.h
- // kneet2
- //
- // Created by Jason Lee on 11/26/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class RuleModel;
- @interface RulesAddCompleteViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) RuleModel *refRule;
- @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 UIImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
- #pragma mark - Instance Methods
- - (IBAction)btnCompleteTouched:(id)sender;
- @end
|