RulesRegisterTitleViewController.h 555 B

123456789101112131415161718192021222324252627
  1. //
  2. // RulesRegisterTitleViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 3/19/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class RuleModel;
  10. @class CustomTextField;
  11. @interface RulesRegisterTitleViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (strong, nonatomic) RuleModel *predefinedRule;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtRuleName;
  15. #pragma mark - Instance Methods
  16. - (IBAction)btnNextTouched:(id)sender;
  17. - (IBAction)btnCancelTouched:(id)sender;
  18. @end