| 12345678910111213141516171819202122232425 |
- //
- // MOLikeAnimation.h
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface MOLikeAnimation : NSObject
- /** 获取单例对象*/
- + (instancetype)shareInstance;
- /** 系统touch来触发的动画*/
- - (void)mo_createAnimationWithTouch:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event withClickNum:(NSInteger)clickNum;
- /** 点击来触发的动画*/
- - (void)mo_createAnimationWithTap:(UITapGestureRecognizer *)tap;
- /// 根据点击数字 返回对应的图片
- + (UIImage *)getClickImageWith:(NSInteger)clickNum;
- //获取点击气泡的图片
- + (UIImage *)getClickBubbleImageWith:(NSInteger)clickNum;
- @end
|