12345678910111213141516171819202122232425262728 |
- //
- // FKAddBasketAnimation.h
- // FirstLink
- //
- // Created by jack on 16/5/9.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef void(^animFinish)(void);
- @interface FKAddBasketAnimTool : NSObject
- <CAAnimationDelegate>
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) UIImage *image;
- @property (nonatomic, assign) CGFloat scale;
- @property (nonatomic, assign) CGFloat scaleDuration;
- @property (nonatomic, assign) CGFloat moveDuration;
- @property (nonatomic, assign) CGFloat margin;
- @property (nonatomic, copy) animFinish finishBlock;
- - (void)showInView:(UIView *)inView targetView:(UIView *)tagetView;
- @end
|