|
//
// topicCollectionCoverFlowCell.h
// ThePaperBase
//
// Created by Huixin on 15/10/14.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topicCollectionCoverFlowDelegate <NSObject>
- (void)pushToCoverFlowDetail:(specialObjectBO*)specialBO;
@end
@interface topicCollectionCoverFlowCell : UITableViewCell
@property(nonatomic, strong)NSArray *specialBOList;
@property(nonatomic, assign)UIInterfaceOrientation orientation;
@property(nonatomic, weak)id<topicCollectionCoverFlowDelegate> delegate;
@end
|