dkahgld

WebviewProgressLine.h 374B

1234567891011121314151617181920212223
  1. //
  2. // WebviewProgressLine.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/6/22.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WebviewProgressLine : UIView
  10. //进度条颜色
  11. @property (nonatomic,strong) UIColor *lineColor;
  12. //开始加载
  13. -(void)startLoadingAnimation;
  14. //结束加载
  15. -(void)endLoadingAnimation;
  16. @end