// // LXShareImageVIew.h // shreImgAnimition // // Created by imac on 16/9/5. // Copyright © 2016年 xiang. All rights reserved. // #import @protocol LXShareImageVIewDelegate - (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 delegate; - (void)shareShow; @end