|
//
// otherPersonTopCell.h
// ThePaperBase
//
// Created by YoungLee on 15/10/8.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol otherPersonTopDelegate <NSObject>
@optional
-(void) pushToDetail:(id) data;
-(void) pushToForward:(id) data;
@end
@interface otherPersonTopCell : UITableViewCell
@property(nonatomic, weak)id<otherPersonTopDelegate> delegate;
@property(nonatomic ,strong)id comment;
@property(nonatomic ,assign)BOOL isTopic;
@end
|