2
0

LBXScanLineAnimation.h 580 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LBXScanLineAnimation.h
  3. //
  4. // github:https://github.com/MxABC/LBXScan
  5. // Created by lbxia on 15/11/3.
  6. // Copyright © 2015年 lbxia. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LBXScanLineAnimation : UIImageView
  10. /**
  11. * 开始扫码线动画
  12. *
  13. * @param animationRect 显示在parentView中得区域
  14. * @param parentView 动画显示在UIView
  15. * @param image 扫码线的图像
  16. */
  17. - (void)startAnimatingWithRect:(CGRect)animationRect InView:(UIView*)parentView Image:(UIImage*)image;
  18. /**
  19. * 停止动画
  20. */
  21. - (void)stopAnimating;
  22. @end