|
//
// searchCell.h
// ThePaperHD
//
// Created by YoungLee on 15/4/14.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface searchCell : UITableViewCell
@property(nonatomic, strong)listContObjectVO *listBO;
@property(nonatomic, strong)NSString *searchKey;
-(void) setData:(listContObjectVO *)listBO key:(NSArray *)key;
@end
|