// // UpImageView.h // 乐销 // // Created by 隋林栋 on 2016/12/28. // Copyright © 2016年 ping. All rights reserved. // #import #import "XG_AssetPickerController.h" //图片选择collection #import "Collection_Image.h" //collection cell #import "CollectionImageCell.h" //上传的图片 #import "BaseImage.h" @interface UpImageView : UIView @property (nonatomic, strong) UIControl *upImageBG; @property (nonatomic, strong) UIImageView *upImageHead; @property (nonatomic, strong) UILabel *upImageLabel; @property (nonatomic, strong) Collection_Image *collection_Image; @property (nonatomic, strong) NSMutableArray *imgArr; @property (nonatomic, strong) NSMutableArray *assets; @property (nonatomic, assign) BOOL isCreat; @property (nonatomic, assign) BOOL isNotShowFileView; @property (nonatomic, assign) BOOL isNotShowUpImageView; @property (nonatomic, assign) BOOL isNotShowUpImageTopView; @property (nonatomic, assign) BOOL isHiddenCollectionNoData;//无数据时隐藏collection @property (nonatomic, strong) void (^blockResetView)(void); @property (strong, nonatomic) UILabel *labelTitle; @property (strong, nonatomic) UILabel *labelName; @property (strong, nonatomic) UILabel *labelTipc; @property (strong, nonatomic) UIView *backView; @property (nonatomic, strong) NSString *imgName; //创建 - (NSString *)fetchRequestImgString; - (NSString *)fetchRequestFileString; //addSubView - (void)addSubview; //refresh - (void)resetView; //show image - (void)showImage; @end