//
|
// PBImageCollectionViewCell.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/8/22.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@interface PBImageCollectionViewCell : UICollectionViewCell
|
@property (nonatomic, weak) UIImageView *imageV;
|
@property (nonatomic, strong) UIImage *image;
|
@property (nonatomic, copy) NSString *imageUrl;
|
@property (nonatomic, assign) RoleType roleType;
|
@property (nonatomic, copy) void(^DeleteImageBlock)(void);
|
@property (nonatomic, copy) NSString *viewPointFlag;
|
@property (nonatomic, copy) void(^OpenViewPointBlock)(void);
|
@property (nonatomic, copy) NSString *countStr;//先于image\imageUrl
|
@end
|