SearchBase.h 391 B

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