RegisterModeViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // RulesRegisterModeViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 3/20/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. #import "CustomCheckBox.h"
  10. @class ItemModel;
  11. @interface RegisterModeViewController : JDViewController
  12. #pragma mark - Properties
  13. @property (assign, nonatomic) BOOL isTrigger;
  14. @property (assign, nonatomic) BOOL isCustomCreation;
  15. @property (strong, nonatomic) ItemModel *tmpItem;
  16. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnSelect;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  19. #pragma mark - Instance Methods
  20. - (IBAction)btnSelectTouched:(id)sender;
  21. - (IBAction)btnCancelTouched:(id)sender;
  22. @end
  23. @class CustomImageView;
  24. @class CustomLabel;
  25. @class CustomRadioButton;
  26. @interface RulesStaticTitleTableViewCell : UITableViewCell
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName;
  28. @end
  29. @interface RulesModeTableViewCell : UITableViewCell
  30. @property (weak, nonatomic) IBOutlet CustomImageView *imgvItem;
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblItemName;
  32. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
  33. @end