// // SJPreviewPhotoController.h // SJPhotoPickerDemo // // Created by Jaesun on 16/8/19. // Copyright © 2016年 S.J. All rights reserved. // #import #import "SJPhotoModel.h" @protocol SJPreviewPhotoControllerDelegate - (void)pickedArrayChangeWithModel:(SJPhotoModel *)model; @end @interface SJPreviewPhotoController : UIViewController @property (nonatomic, strong) NSMutableArray *previewArray; @property (nonatomic, assign) NSInteger curIndex; @property (nonatomic, strong) id delegate; @end