|
//
// topicContentListCell.h
// ThePaperHD
//
// Created by scar1900 on 15/2/16.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topicContentListDelegate <NSObject>
- (void)goToMoreInfoPage:(listContObjectVO*)listBO;
- (void)pushToDetailpage:(listContObjectVO*)listBO;
@end
@interface topicContentListCell : UITableViewCell
@property(nonatomic, strong)nodeObjectBO *nodeBO;
@property(nonatomic, weak)id<topicContentListDelegate> delegate;
@end
|