RulesAddViewController.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // RulesAddViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/20/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomCheckBox;
  10. @class CustomLabel;
  11. @class CustomImageView;
  12. @class CustomButton;
  13. @class CustomTextView;
  14. @class CustomTextField;
  15. @class RuleDetailModel;
  16. @interface RulesAddViewController : JDViewController
  17. #pragma mark - Properties
  18. @property (strong, nonatomic) RuleDetailModel *tmpRuleDetail;
  19. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  20. #pragma mark - Instance Methods
  21. - (IBAction)btnConfirmTouched:(id)sender;
  22. - (IBAction)btnCancelTouched:(id)sender;
  23. @end
  24. @interface RulesAddTitleTableViewCell : KNTableViewCell
  25. @property (weak, nonatomic) IBOutlet CustomTextField *txtRuleTitle;
  26. @end
  27. @interface RulesAddHeaderTableViewCell : KNTableViewCell
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  29. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  30. @end
  31. @interface RulesAddTableViewCell : KNTableViewCell
  32. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  33. @property (weak, nonatomic) IBOutlet CustomLabel *lblItem;
  34. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItem;
  35. @property (weak, nonatomic) IBOutlet CustomLabel *lblCondition;
  36. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  37. @property (weak, nonatomic) IBOutlet UIView *bottomLine;
  38. @end
  39. @interface RulesAddPushTableViewCell : KNTableViewCell
  40. @property (weak, nonatomic) IBOutlet CustomTextView *txvMessage;
  41. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  42. @end
  43. @interface RulesAddConditionHeaderTableViewCell : KNTableViewCell
  44. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  45. @end
  46. @interface RulesAddConditionTableViewCell : KNTableViewCell
  47. @property (weak, nonatomic) IBOutlet UIView *container;
  48. @end
  49. @interface RulesAddFooterTableViewCell : KNTableViewCell
  50. @end