|
//
// searchHistoryTableViewController.h
// ThePaperBase
//
// Created by Huixin on 15/7/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
@protocol searchHistoryTableViewDelegate <NSObject>
- (void)searchFromHistoryStr:(NSString*)searchStr;
@end
@interface searchHistoryTableViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
@property(nonatomic, strong)UITableView *tableView;
@property(nonatomic, weak)id<searchHistoryTableViewDelegate> delegate;
- (void)loadDataList;
- (void)setHeaderHeight:(CGFloat)height;
@end
|