// // PhotosViewController.h // tongxin // // Created by WeiChaoZheng on 2018/6/19. // Copyright © 2018年 xTT. All rights reserved. // #import #import "Photo.h" #import "baseViewController.h" //#import "XLPhotoBrowser.h" //#import "XLZoomingScrollView.h" @interface PhotosViewController : baseViewController /** 滑动的ScrollView */ @property (nonatomic, strong) UIScrollView * scrollView; /** 图片的数据源 */ @property (nonatomic, strong) NSMutableArray * dataSouce; /** 图片的View 数组 */ //@property (nonatomic, strong) NSMutableArray * dataViews; @property (nonatomic, strong) NSMutableArray *dataViews; /** 当前的图片标识 */ @property (nonatomic, assign) int currentIndex; @end