123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // UpImageView.h
- // 乐销
- //
- // Created by 隋林栋 on 2016/12/28.
- // Copyright © 2016年 ping. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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<XG_AssetModel *> *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
|