EnumSelectViewController.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // CommonEditorEnumViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-18.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EnumSelectDelegate.h"
  10. @interface EnumSelectViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
  11. @property (strong,nonatomic) NSMutableDictionary* cadedate;
  12. //@property (strong,nonatomic) NSMutableDictionary* value;
  13. @property (nonatomic, weak) id<EnumSelectViewControllerDelegate> delegate;
  14. //@property bool canbeEmpty;
  15. //@property index last
  16. @property bool single_select;
  17. @property bool auto_close;
  18. @property (strong,nonatomic) NSIndexPath* updatePosition;
  19. @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
  20. //@property (strong,nonatomic) NSString* title;
  21. @property bool dirty ;
  22. @property int max_select ;
  23. @property bool is_dialog ;
  24. @property bool sys_style ;
  25. @property (strong, nonatomic) IBOutlet UITableView *tableEnum;
  26. @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* value);
  27. @property bool hide_navibar;
  28. @property bool reset;
  29. @property int filter_count;
  30. @property (strong,nonatomic) NSString* keywords;
  31. //#pragma mark 在线cadedate
  32. //@property bool online_enum ;
  33. //@property (strong,nonatomic) NSString* online_url;
  34. //@property (strong,nonatomic) NSMutableDictionary* online_params;
  35. @end