RulesAddViewController.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. @interface RulesAddViewController : JDViewController
  15. #pragma mark - Properties
  16. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  17. #pragma mark - Instance Methods
  18. - (IBAction)btnConfirmTouched:(id)sender;
  19. - (IBAction)btnCancelTouched:(id)sender;
  20. @end
  21. @interface RulesAddHeaderTableViewCell : KNTableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  23. @property (weak, nonatomic) IBOutlet CustomButton *btnAdd;
  24. @end
  25. @interface RulesAddTableViewCell : KNTableViewCell
  26. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblItem;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItem;
  29. @property (weak, nonatomic) IBOutlet CustomLabel *lblCondition;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  31. @property (weak, nonatomic) IBOutlet UIView *bottomLine;
  32. @end
  33. @interface RulesAddPushTableViewCell : KNTableViewCell
  34. @property (weak, nonatomic) IBOutlet CustomTextView *txvMessage;
  35. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  36. @end
  37. @interface RulesAddConditionHeaderTableViewCell : KNTableViewCell
  38. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  39. @end
  40. @interface RulesAddConditionTableViewCell : KNTableViewCell
  41. @property (weak, nonatomic) IBOutlet UIView *container;
  42. @end
  43. @interface RulesAddFooterTableViewCell : KNTableViewCell
  44. @end