热更新demo

cntentImageCell.h 697B

    // // cntentImageCell.h // ThePaperDemo // // Created by scar1900 on 14/11/5. // Copyright (c) 2014年 scar1900. All rights reserved. // #import <UIKit/UIKit.h> @class cntentImageCell; //详情页图片点击 @protocol contentImageDelegate <NSObject> - (void)clickImage:(imageObjectBO*)imageBO withImageView:(UIImageView *)imageView; - (void)clickLoadImageWith:(imageObjectBO *)imageBo Cell:(cntentImageCell *)cell; @end @interface cntentImageCell : UITableViewCell @property(nonatomic, strong)imageObjectBO *imageBO; @property(nonatomic, weak)id<contentImageDelegate> delegate; @property(nonatomic, strong)UIButton *noImageButton; @property(nonatomic, strong)NSIndexPath *indexPath; @end