1234567891011121314151617181920 |
- //
- // PhotosUploadViewController.h
- // LN_School
- //
- // Created by 张嵘 on 2018/10/10.
- // Copyright © 2018 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^ReturnImagesBlock)(NSMutableArray *imagesArr, NSMutableArray * imagesPathArr);
- @interface PhotosUploadViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UICollectionView *collectView;
- - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil imagesArr:(NSArray *)imagesArr imagesPathArr:(NSArray *)imagesPathArr returnImagesBlock:(ReturnImagesBlock)returnImagesBlock;
- @end
- NS_ASSUME_NONNULL_END
|