44 lines
858 B
Objective-C
44 lines
858 B
Objective-C
//
|
|
// LXShareImageVIew.h
|
|
// shreImgAnimition
|
|
//
|
|
// Created by imac on 16/9/5.
|
|
// Copyright © 2016年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@protocol LXShareImageVIewDelegate <NSObject>
|
|
|
|
- (void)didSelectButWithBtnTag:(NSInteger)btnTag;
|
|
|
|
@end
|
|
|
|
@interface LXShareImageVIew : UIView
|
|
|
|
@property (nonatomic, retain) UIView *primaryView;
|
|
|
|
@property float spinTime;
|
|
|
|
@property (nonatomic ,retain) UIScrollView *scrollView;
|
|
|
|
@property (nonatomic ,strong) NSArray *titles;
|
|
|
|
@property (nonatomic,strong) NSArray *imges;
|
|
|
|
@property (nonatomic, strong) UIControl *blackOverBack;
|
|
|
|
//@property (nonatomic,strong) UIImageView *img;
|
|
|
|
@property (nonatomic ,strong) NSMutableArray *imgsArr;
|
|
|
|
@property (nonatomic ,strong) NSMutableArray *animationFraArr;
|
|
|
|
|
|
@property (nonatomic,weak)id<LXShareImageVIewDelegate> delegate;
|
|
|
|
- (void)shareShow;
|
|
|
|
|
|
|
|
@end
|