|
//
// liveVideoCell.h
// ThePaperHD
//
// Created by scar1900 on 15/3/11.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol liveVideoCellDelegate <NSObject>
- (void)clickToPlayVideo:(CGRect)videoFrame indexPath:(NSIndexPath*)indexPath videoBO:(videoObjectBO*)videoBO;
@end
@interface liveVideoCell : UITableViewCell
@property(nonatomic, strong)NSIndexPath *indexPath;
@property(nonatomic ,weak)id<liveVideoCellDelegate> delegate;
@property(nonatomic, strong)NSDictionary *dataDic;
@end
|