AttachmentViewController.h 691 B

123456789101112131415161718192021222324
  1. //
  2. // AttachmentViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2018/11/15.
  6. // Copyright © 2018 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "AlbumPhotoCollectionViewCell.h"
  10. #import "ImageModel.h"
  11. #import "XHImageViewer.h"
  12. #import "XHAlbumCollectionViewFlowLayout.h"
  13. #define PhotoCollectionViewCellIdentifier @"PhotoCollectionViewCellIdentifier"
  14. @interface AttachmentViewController : BaseViewController<UICollectionViewDelegate, UICollectionViewDataSource>
  15. @property(nonatomic,strong) NSMutableArray *attachImageArray;
  16. @property (nonatomic, strong) UICollectionView *sharePhotoCollectionView;
  17. -(void)loadData:(NSMutableArray*)imageArray;
  18. @end