|
//
// videoCell.h
// ThePaperDemo
//
// Created by scar1900 on 14/11/5.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol videoCellDelegate <NSObject>
- (void)clickToPlayVideo:(CGRect)videoFrame indexPath:(NSIndexPath*)indexPath;
@end
@interface videoCell : UITableViewCell
@property(nonatomic, strong)imageObjectBO *imageBO;
@property(nonatomic, strong)NSIndexPath *indexPath;
@property(nonatomic ,weak)id<videoCellDelegate> delegate;
@property(nonatomic, strong)videoObjectBO *videoBO;
@end
|