|
//
// AnswerPicBaseCell.h
// ThePaperBase
//
// Created by zhousan on 15/11/5.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AsyncImageView.h"
@protocol AnswerPicBaseDelegate <NSObject>
@optional
- (void)clickImageWithIndex:(NSUInteger)index ImageArray:(NSArray *)imageArray;
@end
#define answer_pic_width (173/2)*rect_screen.size.width/320
@interface AnswerPicBaseCell : UITableViewCell
@property(nonatomic, strong)UIView *backView;
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, strong)UIView *lineView;
@property(nonatomic, strong)NSIndexPath *indexPath;
@property(nonatomic, strong)AsyncImageView *quoPic1;
@property(nonatomic, strong)AsyncImageView *quoPic2;
@property(nonatomic, strong)AsyncImageView *quoPic3;
@property(nonatomic, assign)CGSize imageSize;
@property(nonatomic, weak)id<AnswerPicBaseDelegate> delegate;
- (void)subLayoutSubViews;
- (void)reLayoutSubViews;
@end
|