| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // MultiLevelPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 12/7/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomButton;
- @class CustomLabel;
- @class CustomRadioGroup;
- @class CustomRadioButton;
- @class ItemSubModel;
- @interface MultiLevelPickerView : UIPickerView {
- BOOL _changed;
- }
- @end
- @interface MultiLevelPopupView : CustomAlertView
- //properties
- @property (weak, nonatomic) ItemSubModel *refSubItem;
- @property (weak, nonatomic) IBOutlet MultiLevelPickerView *multiLevelPicker;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUnit;
- @property (strong, nonatomic) CustomRadioGroup *rgroup;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoUp;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoDown;
- //methods
- - (id)initFromNib;
- @end
|