You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
797 B
42 lines
797 B
1 year ago
|
//
|
||
|
// PhotosViewController.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/6/19.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "Photo.h"
|
||
|
#import "baseViewController.h"
|
||
|
//#import "XLPhotoBrowser.h"
|
||
|
//#import "XLZoomingScrollView.h"
|
||
|
|
||
|
|
||
|
@interface PhotosViewController : baseViewController<UIScrollViewDelegate>
|
||
|
|
||
|
/**
|
||
|
滑动的ScrollView
|
||
|
*/
|
||
|
@property (nonatomic, strong) UIScrollView * scrollView;
|
||
|
|
||
|
/**
|
||
|
图片的数据源
|
||
|
*/
|
||
|
@property (nonatomic, strong) NSMutableArray <Photo*> * dataSouce;
|
||
|
|
||
|
/**
|
||
|
图片的View 数组
|
||
|
*/
|
||
|
//@property (nonatomic, strong) NSMutableArray <XLZoomingScrollView*> * dataViews;
|
||
|
@property (nonatomic, strong) NSMutableArray *dataViews;
|
||
|
|
||
|
/**
|
||
|
当前的图片标识
|
||
|
*/
|
||
|
@property (nonatomic, assign) int currentIndex;
|
||
|
|
||
|
@end
|
||
|
|
||
|
|