|
//
// topciCoverView.h
// ThePaperBase
//
// Created by liyuan on 15/10/22.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topciCoverViewDelegate <NSObject>
@optional
-(void) gotoTopicContent:(listContObjectVO*) topic;
@end
@interface topciCoverView : UICollectionReusableView
@property(nonatomic, strong)listContObjectVO *listBo;
@property(nonatomic, assign)UIInterfaceOrientation *orientation;
@property(nonatomic, weak)id<topciCoverViewDelegate> delegate;
@end
|