|
//
// otherPersonCell.h
// ThePaperHD
//
// Created by YoungLee on 15/4/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol otherPersonCellDelegate <NSObject>
@optional
-(void) pushToDetail:(id) data;
-(void) pushToForward:(id) data;
- (void)hasPraisedComment:(NSIndexPath*)indexPath withCommentBO:(commentObjectVO*)commentBO;
- (void)hasPraisedTopic:(NSIndexPath*)indexPath withCommentBO:(TopicInfoBO*)topic;
- (void)commentBackForUser:(commentObjectVO*)commentBO;
- (void)gotoUserInfo:(commentObjectVO*) commentBO;
@end
@interface otherPersonCell : UITableViewCell
@property(nonatomic, weak)id<otherPersonCellDelegate> otherDelegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
-(void) setData:(id) dataSource;
@end
|