TCWebViewController.h 367 B

123456789101112131415
  1. //
  2. // SDKIntroViewController.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by shengcui on 2018/8/31.
  6. // Copyright © 2018年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @import WebKit;
  10. @interface TCWebViewController : UIViewController <WKNavigationDelegate>
  11. @property (strong, nonatomic) WKWebView *webView;
  12. - (instancetype)initWithURL:(NSString *)url;
  13. @end