BUWebViewProgressView.h 470 B

12345678910111213141516171819202122232425
  1. //
  2. // BUWebViewProgressView.h
  3. // BURexxar
  4. //
  5. // Created by muhuai on 2017/6/13.
  6. // Copyright © 2017年 muhuai. All rights reserved.
  7. //
  8. #import "BUWebViewDefine.h"
  9. #import <UIKit/UIKit.h>
  10. #import <WebKit/WebKit.h>
  11. /**
  12. 假进度条
  13. 使用方法:
  14. 1.addSubView到 WebView中
  15. 2.通过多路代理将此控件设为其中一个子代理
  16. */
  17. @interface BUWebViewProgressView : UIView<BUWebViewDelegate>
  18. @property (nonatomic, strong) UIColor *lineFillColor;
  19. @end