|
//
// detailContentMoreInfoCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/15.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol detailContentMoreInfoDelegate <NSObject>
- (void)pushToColumnPage:(listContObjectVO*)listBO;
- (void)pushToDetailPage:(listContObjectVO*)listBO;
@end
@interface detailContentMoreInfoCell : UITableViewCell
@property(nonatomic, strong)NSMutableArray* dataList;
@property(nonatomic, weak)id<detailContentMoreInfoDelegate> delegate;
@end
|