|
//
// paperCollectCell.h
// ThePaperHD
//
// Created by scar1900 on 15/1/5.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol paperCollectDelegate <NSObject>
- (void)goToColumnPage:(listContObjectVO*)listBO;
@end
@interface paperCollectCell : UICollectionViewCell
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)listContObjectVO *listContentBO;
@property(nonatomic, weak)id<paperCollectDelegate> delegate;
- (void)retinaSelect:(BOOL)highlighted complete:(void(^)())completion;
@end
|