热更新demo

videoCell.h 719B

    // // videoCell.h // ThePaperDemo // // Created by scar1900 on 14/11/5. // Copyright (c) 2014年 scar1900. All rights reserved. // #import <UIKit/UIKit.h> @class videoCell; @protocol videoCellDelegate <NSObject> - (void)clickToPlayVideo:(CGRect)videoFrame indexPath:(NSIndexPath*)indexPath imageSize:(CGSize)imageSize; - (void)clickLoadVideoWith:(videoObjectBO *)imageBo Cell:(videoCell *)cell; @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; @property(nonatomic, strong)UIButton *noImageButton; @end