1234567891011121314151617181920212223242526272829 |
- #import <UIKit/UIKit.h>
- #import "RQBaseViewController.h"
- @interface SearchBase : RQBaseViewController
- {
- UITableView* myTableView;
- }
- /**
- 0表示搜驾校。1表示搜教练。 主要是用来区别解析函数的。
- */
- @property(assign)NSInteger catalog;
- @property(nonatomic, strong) NSArray* methods;
- @property(nonatomic, assign) NSInteger type;
- -(void)gotoSearch;
- @end
|