// // RulesAddViewController.h // kneet2 // // Created by Jason Lee on 11/20/15. // Copyright © 2015 ntels. All rights reserved. // #import "JDViewController.h" @class CustomCheckBox; @class CustomLabel; @class CustomImageView; @class CustomButton; @class CustomTextView; @class CustomTextField; @class RuleDetailModel; @interface RulesAddViewController : JDViewController #pragma mark - Properties @property (strong, nonatomic) RuleDetailModel *tmpRuleDetail; @property (weak, nonatomic) IBOutlet CustomTableView *tableView; #pragma mark - Instance Methods - (IBAction)btnConfirmTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; @end @interface RulesAddTitleTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextField *txtRuleTitle; @end @interface RulesAddHeaderTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet CustomButton *btnAdd; @end @interface RulesAddTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon; @property (weak, nonatomic) IBOutlet CustomLabel *lblItem; @property (weak, nonatomic) IBOutlet CustomLabel *lblSubItem; @property (weak, nonatomic) IBOutlet CustomLabel *lblCondition; @property (weak, nonatomic) IBOutlet CustomButton *btnDelete; @property (weak, nonatomic) IBOutlet UIView *bottomLine; @end @interface RulesAddPushTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomTextView *txvMessage; @property (weak, nonatomic) IBOutlet CustomButton *btnDelete; @end @interface RulesAddConditionHeaderTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect; @end @interface RulesAddConditionTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet UIView *container; @end @interface RulesAddFooterTableViewCell : KNTableViewCell @end