| 123456789101112131415161718192021222324 |
- //
- // SearchFilterViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-25.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class SearchFilterViewController;
- @protocol SearchFilterDelegate <NSObject>
- -(void) SearchFilterReturn:(NSMutableDictionary *)value;
- @end
- @interface SearchFilterViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
- @property (strong,nonatomic) NSMutableDictionary* cadedate;
- @property (nonatomic, weak) id<SearchFilterDelegate> delegate;
- @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
- @property (strong, nonatomic) IBOutlet UITableView *tableView;
- @property (strong,nonatomic) NSMutableDictionary* value;
- @end
|