FullScreenViewController.h 561 Bytes
Newer Older
勾芒's avatar
勾芒 committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  FullScreenViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/20.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface FullScreenViewController : UICollectionViewController

勾芒's avatar
勾芒 committed
13 14 15 16 17 18 19

/**
 *  传入数据源数组
 */
@property (nonatomic,copy) NSArray *datasArray;


勾芒's avatar
勾芒 committed
20 21 22 23
/**
 *  身份ID/判断是场景库调用还是产品库调用
 */
@property (nonatomic,assign) BOOL isProductLibrary;
勾芒's avatar
勾芒 committed
24 25 26 27 28 29 30 31 32



/**
 *  应该现在的下标
 */
@property (nonatomic,assign) NSInteger currentindex;


勾芒's avatar
勾芒 committed
33
@end