// // EnumSelectOnlineViewController.h // RA TradeFiling // // Created by Rui Zhang on 5/14/21. // #import #import "EnumSelectViewController.h" #import "EnumSelectDelegate.h" #import "RAProgressHUD.h" NS_ASSUME_NONNULL_BEGIN @class EnumSelectOnlineViewController; //@protocol EnumSelectOnlineViewControllerDelegate // //-(void) EnumValueChanged:(NSMutableDictionary *)value indexPath :(NSIndexPath*) indexPath; // //@end @interface EnumSelectOnlineViewController : UIViewController //@property (strong,nonatomic) NSMutableDictionary* value; @property (nonatomic, weak) id 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) 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