|
//
// searchHistoryCell.h
// ThePaperBase
//
// Created by Huixin on 15/7/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
@protocol searchHistoryCellDelegate <NSObject>
- (void)deleteStrAtIndex:(NSInteger)index;
@end
@interface searchHistoryCell : UITableViewCell
@property(nonatomic, weak)id<searchHistoryCellDelegate> delegate;
@property(nonatomic,strong)NSString* searchStr;
@end
|