| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // EnumSelectOnlineViewController.h
- // RA TradeFiling
- //
- // Created by Rui Zhang on 5/14/21.
- //
- #import <UIKit/UIKit.h>
- #import "EnumSelectViewController.h"
- #import "EnumSelectDelegate.h"
- //#import "RAProgressHUD.h"
- NS_ASSUME_NONNULL_BEGIN
- @class EnumSelectOnlineViewController;
- //@protocol EnumSelectOnlineViewControllerDelegate <NSObject>
- //
- //-(void) EnumValueChanged:(NSMutableDictionary *)value indexPath :(NSIndexPath*) indexPath;
- //
- //@end
- @interface EnumSelectOnlineViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
- //@property (strong,nonatomic) NSMutableDictionary* value;
- @property (nonatomic, weak) id<EnumSelectViewControllerDelegate> delegate;
- //@property bool canbeEmpty;
- //@property index last
- @property bool single_select;
- @property bool from_action;
- @property bool auto_close;
- @property (strong,nonatomic) NSIndexPath* updatePosition;
- @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
- //@property (strong,nonatomic) NSString* title;
- @property bool dirty ;
- @property int max_select ;
- @property bool is_dialog ;
- @property (weak, nonatomic) IBOutlet UILabel *labelNoRecord;
- @property (strong, nonatomic) IBOutlet UITableView *tableEnum;
- @property (strong,nonatomic) NSIndexPath* from;
- @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* value,NSIndexPath* source);
- @property bool hide_navibar;
- @property bool reset;
- @property int filter_count;
- @property (strong,nonatomic,nullable) NSString* keywords;
- #pragma mark 在线cadedate
- @property bool online_enum ;
- @property (strong,nonatomic) NSString* online_keywords;
- //@property (strong,nonatomic) NSString* online_url;
- @property (strong,nonatomic) NSMutableDictionary* online_params;
- @end
- NS_ASSUME_NONNULL_END
|