MultiLevelPopupView.h 875 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // MultiLevelPopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 12/7/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CustomButton;
  12. @class CustomLabel;
  13. @class CustomRadioGroup;
  14. @class CustomRadioButton;
  15. @class ItemSubModel;
  16. @interface MultiLevelPickerView : UIPickerView {
  17. BOOL _changed;
  18. }
  19. @end
  20. @interface MultiLevelPopupView : CustomAlertView
  21. //properties
  22. @property (weak, nonatomic) ItemSubModel *refSubItem;
  23. @property (weak, nonatomic) IBOutlet MultiLevelPickerView *multiLevelPicker;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblUnit;
  25. @property (strong, nonatomic) CustomRadioGroup *rgroup;
  26. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoUp;
  27. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoDown;
  28. //methods
  29. - (id)initFromNib;
  30. @end