SPSBHtmlViewController.h 547 B

123456789101112131415161718192021222324
  1. //
  2. // SPSBHtmlViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class WKWebView;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SPSBHtmlViewController : UIViewController
  11. @property (nonatomic, strong) NSString *spsb_url;
  12. @property (nonatomic, strong, nullable) NSString *spsb_jsString;
  13. @property (nonatomic, assign) bool spsb_isJsMethod;
  14. @property (nonatomic, readonly, strong) WKWebView *spsb_webView;;
  15. @property (nonatomic, strong, nullable) void (^spsb_callBack)(id data);
  16. @end
  17. NS_ASSUME_NONNULL_END