|
//
// searchTableViewController.h
// ThePaperBase
//
// Created by Huixin on 15/7/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
@protocol searchTableViewDelegate <NSObject>
- (void)searchGoToContent:(listContObjectVO*)data;
@end
@interface searchTableViewController : TPTableViewController
@property(nonatomic, strong)NSArray *dataList;
@property(nonatomic, strong)NSString *searchStr;
@property(nonatomic, weak)id<searchTableViewDelegate> delegate;
@end
|