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