BUWKWebView.h 652 B

123456789101112131415161718192021
  1. //
  2. // BUWKWebView.h
  3. // BURexxar
  4. //
  5. // Created by muhuai on 2017/5/5.
  6. // Copyright © 2017年 muhuai. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <WebKit/WebKit.h>
  10. #import "BUWebViewDefine.h"
  11. @interface BUWKWebView : WKWebView<BUWebView>
  12. /// 白屏检测
  13. - (void)bu_detectBlankWebViewCompleteBlock:(void(^)(BOOL, NSError *))block;
  14. /// 白屏检测百分比
  15. - (void)bu_detectBlankPercentCompleteBlock:(void(^)(CGFloat bgColorPercent, NSError *error))block;
  16. /// jsbridge 白屏检测百分比
  17. - (void)bu_detectBlankPercentWithImageStr:(NSString *)imageStr completeBlock:(void(^)(CGFloat bgColorPercent, NSError *))block;
  18. @end