Initial commit
This commit is contained in:
Executable
+32
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// LYPhotoShowView.h
|
||||
// Droplets
|
||||
//
|
||||
// Created by 米明 on 15/12/29.
|
||||
// Copyright © 2015年 米明. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@class LYPhoto;
|
||||
|
||||
typedef void(^LYPhotoActionBlock)(NSInteger index);
|
||||
|
||||
@interface LYPhotoShowView : UIView
|
||||
|
||||
@property(nonatomic,strong) NSArray * images;//urls , names or images
|
||||
|
||||
@property(nonatomic,copy)LYPhotoActionBlock photoActionCallback;
|
||||
@property(nonatomic,strong)UIScrollView * scrollView;
|
||||
-(void)show;
|
||||
-(void)dismiss;
|
||||
|
||||
@property(nonatomic,strong) NSArray * nameLabels;
|
||||
|
||||
- (void)setImages:(NSArray *)images nameLabels:(NSArray *)nameLabels;
|
||||
|
||||
//指示条
|
||||
|
||||
@property(nonatomic,strong) UIView *line;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user