|
//
// frontPageCollectionController.h
// ThePaperHD
//
// Created by scar1900 on 15/1/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol frontPageCollectDelegate <NSObject>
- (void)goToMoreInfoPage:(NSDictionary*)infoDic;
- (void)pushToColumPage:(listContObjectVO*)listBO;
- (void)startCollectRfresh;
- (void)needLogin;
@end
@interface frontPageCollectionController : UICollectionViewController
@property(nonatomic, strong)NSMutableArray* dataList;
@property(nonatomic, weak)id<frontPageCollectDelegate> delegate;
@property(nonatomic, strong)NSString *nodeId;
- (void)endLeftRfresh:(void (^)(void))completion;
@end
|