// // AttachmentViewController.h // IBOSS // // Created by 关宏厚 on 2018/11/15. // Copyright © 2018 elongtian. All rights reserved. // #import "BaseViewController.h" #import "AlbumPhotoCollectionViewCell.h" #import "ImageModel.h" #import "XHImageViewer.h" #import "XHAlbumCollectionViewFlowLayout.h" #define PhotoCollectionViewCellIdentifier @"PhotoCollectionViewCellIdentifier" @interface AttachmentViewController : BaseViewController @property(nonatomic,strong) NSMutableArray *attachImageArray; @property (nonatomic, strong) UICollectionView *sharePhotoCollectionView; -(void)loadData:(NSMutableArray*)imageArray; @end