| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // 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
|