LargePictureViewController.h 777 Bytes
//
//  LargePictureViewController.h
//  redstar
//
//  Created by admin on 16/1/8.
//  Copyright © 2016年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSInteger, PictureSaveMode) {
    PictureNetWorkMode = 0,
    PictureLocalMode = 1,
    PictureSpecialMode = 2
};

@interface LargePictureViewController : UIViewController<UIScrollViewDelegate>{
    CGFloat offset;
}

@property (nonatomic, strong) NSArray *allImageArray;
@property (nonatomic, assign) NSInteger index;

@property (nonatomic, strong) UIScrollView *imageScrollView;
@property (nonatomic, assign) PictureSaveMode pictureSaveMode;

@property (nonatomic, strong) NSString *uuid;
- (CGRect)zoomRectForScale:(float)scale inView:(UIScrollView*)scrollView withCenter:(CGPoint)center;

@end