| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // CommonEditorEnumViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-18.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "EnumSelectDelegate.h"
- @interface EnumSelectViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
- @property (strong,nonatomic) NSMutableDictionary* cadedate;
- //@property (strong,nonatomic) NSMutableDictionary* value;
- @property (nonatomic, weak) id<EnumSelectViewControllerDelegate> delegate;
- //@property bool canbeEmpty;
- //@property index last
- @property bool single_select;
- @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 (strong, nonatomic) IBOutlet UITableView *tableEnum;
- @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* value);
- @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_url;
- //@property (strong,nonatomic) NSMutableDictionary* online_params;
- @end
|