|
//
// TPImageBaseView.h
// ThePaperDemo
//
// Created by zhousan on 15/7/16.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
typedef NS_ENUM(NSInteger, BASEIMAGETYPE) {
BASEIMAGETYPEIMAGE = 0,//图片
BASEIMAGETYPEVEDIO, //视频
BASEIMAGETYPEFLOW, //轮播
BASEIMAGETYPESIMPLEIMAGE //纯图片
};
@interface TPImageBaseView : UIView
@property (nonatomic, assign) BASEIMAGETYPE type; //类型
@property (nonatomic, strong) listContObjectVO *listContent;
@property(nonatomic, strong) specialObjectBO *specialBO;
@end
|