// // RulesConditionHomeModePopupView.h // kneet2 // // Created by Jason Lee on 11/25/15. // Copyright (c) 2015 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" #import "JDViewController.h" @class CustomImageView; @class CustomCheckBox; @class CustomRadioButton; @class ItemModel; @interface RulesConditionHomeModePopupView : CustomAlertView @property (weak, nonatomic) ItemModel *condition; @property (weak, nonatomic) IBOutlet CustomTableView *tableView; - (id)initFromNib; @end @interface RulesConditionHomeModeTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomLabel *lblMode; @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect; @end