RulesAddCompleteViewController.h 781 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RulesAddCompleteViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/26/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface RulesAddCompleteViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) IBOutlet UIView *maskView;
  12. @property (weak, nonatomic) IBOutlet UIView *popView;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnAction;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblRuleName;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnCompleteTouched:(id)sender;
  20. @end