LZLiveAnimation.h 431 B

1234567891011121314151617181920212223
  1. //
  2. // LZLiveAnimation.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/6/3.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface LZLiveAnimation : NSObject
  11. /// 点击某一个位置出现动画
  12. /// @param point 按下去的点
  13. /// @param baseView 装载容器
  14. + (void)showAnimationWithPoint:(CGPoint)point baseView:(UIView *)baseView;
  15. @end
  16. NS_ASSUME_NONNULL_END