RulesConditionHomeModePopupView.h 714 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // RulesConditionHomeModePopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/25/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomImageView;
  12. @class CustomCheckBox;
  13. @class CustomRadioButton;
  14. @class ItemModel;
  15. @interface RulesConditionHomeModePopupView : CustomAlertView
  16. @property (weak, nonatomic) ItemModel *condition;
  17. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  18. - (id)initFromNib;
  19. @end
  20. @interface RulesConditionHomeModeTableViewCell : KNTableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblMode;
  22. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkSelect;
  23. @end