|
//
// searchController.h
// ThePaperHD
//
// Created by YoungLee on 15/4/14.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPKeyboardController.h"
@protocol searchCenterDelegate <NSObject>
- (void)searchGoToContent:(id)data;
- (void)hasAppearSearchCenter;
@end
@interface searchController :TPKeyboardController
@property(nonatomic, weak)id<searchCenterDelegate> delegate;
@property(nonatomic, assign)BOOL isNeedHold;
@end
|