| 123456789101112131415161718192021222324 |
- //
- // 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<UICollectionViewDelegate, UICollectionViewDataSource>
- @property(nonatomic,strong) NSMutableArray *attachImageArray;
- @property (nonatomic, strong) UICollectionView *sharePhotoCollectionView;
- -(void)loadData:(NSMutableArray*)imageArray;
- @end
|