// // RulesRegisterModeViewController.h // kneet // // Created by Jason Lee on 3/20/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" #import "CustomCheckBox.h" @class ItemModel; @interface RegisterModeViewController : JDViewController #pragma mark - Properties @property (assign, nonatomic) BOOL isTrigger; @property (assign, nonatomic) BOOL isCustomCreation; @property (strong, nonatomic) ItemModel *tmpItem; @property (weak, nonatomic) IBOutlet UITableView *tableView; @property (weak, nonatomic) IBOutlet CustomButton *btnSelect; @property (weak, nonatomic) IBOutlet CustomButton *btnCancel; #pragma mark - Instance Methods - (IBAction)btnSelectTouched:(id)sender; - (IBAction)btnCancelTouched:(id)sender; @end @class CustomImageView; @class CustomLabel; @class CustomRadioButton; @interface RulesStaticTitleTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName; @end @interface RulesModeTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet CustomImageView *imgvItem; @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName; @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect; @end