|
//
// topicSearchController.h
// ThePaperHD
//
// Created by YoungLee on 15/6/8.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPKeyboardController.h"
@protocol topicSearchDelegate <NSObject>
@optional
-(void) searchToFilter:(TopicInfoBO *) topic;
@end
@interface topicSearchController : TPKeyboardController
@property(nonatomic, weak)id<topicSearchDelegate> delegate;
@property(nonatomic, assign)BOOL isNeedHold;
@end
|