|
//
// coverFlowView.h
// ThePaperHD
//
// Created by scar1900 on 15/1/4.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol coverFlowDelegate <NSObject>
- (void)didSelectOneFlow:(listContObjectVO*)listBO;
@end
@interface coverFlowView : UIView
@property(nonatomic, assign)UIInterfaceOrientation orientation;
@property(nonatomic, strong)NSArray *dataList;
@property(nonatomic, weak)id<coverFlowDelegate> delegate;
@end
|