|
//
// frontPageCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol frontPageCellDelgate <NSObject>
- (void)clickMoreInfo:(NSDictionary*)infoDic;
- (void)pushGotoNodeListPage:(listContObjectVO*)listBO infoDic:(NSDictionary*)infoDic;
- (void)leftRefreshSuccess:(NSIndexPath*)indexPath newDataList:(NSMutableArray*)list;
- (void)popUpLoginWindow;
@end
@interface frontPageCell : UITableViewCell<RemoteDelegate>
@property(nonatomic,strong)NSMutableArray *channelInfoDataList;
@property(nonatomic, strong)NSIndexPath *indexPath;
@property(nonatomic, weak)id<frontPageCellDelgate> delegate;
- (void)startCollectRfresh;
@end
|