RepairAddPicCollectionViewCell.h 584 Bytes
//
//  RepairAddPicCollectionViewCell.h
//  patrol
//
//  Created by Javen on 2016/10/23.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface RepairAddPicCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *img;
@property (weak, nonatomic) IBOutlet UIImageView *imgPicture;
@property (nonatomic, assign) NSInteger index;
@property (nonatomic, copy) void (^blockDelete)(NSInteger index);

- (void)configCellWithArr:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath;
@end