// // WFCPrivacyViewController.m // WildFireChat // // Created by WF Chat on 2019/1/22. // Copyright © 2019 WildFireChat. All rights reserved. // #import "WFCPrivacyViewController.h" #import #import "WFCConfig.h" @interface WFCPrivacyViewController () @property(nonatomic, strong)WKWebView *webview; @end @implementation WFCPrivacyViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.webview = [[WKWebView alloc] initWithFrame:self.view.bounds]; NSString *path; if (self.isPrivacy) { path = USER_PRIVACY_URL; } else { path = USER_AGREEMENT_URL; } [self.webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:path]]]; [self.view addSubview:self.webview]; } /* #pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller. } */ @end