GalleryViewController.h 661 Bytes
//
//  GalleryViewController.h
//  vanke
//
//  Created by Z on 16/7/18.
//  Copyright © 2016年 gomore. All rights reserved.
//  storyboard

#import <UIKit/UIKit.h>
#import "GalleryCollectionViewCell.h"
typedef NS_ENUM(NSInteger, GalleryType) {
    GalleryTypeReadOnly,
    GalleryTypeEdit
};
typedef void (^closeBlock)(NSInteger index);
@interface GalleryViewController : UIViewController
@property (nonatomic, strong) NSMutableArray *arrData;
@property (nonatomic, assign) NSInteger page;
@property (nonatomic, assign) GalleryType type;
@property (nonatomic, strong) NSMutableArray *arrOnlineUuids;
@property (nonatomic, copy) closeBlock blockDelete;

@end