苹果手机调用网页打包app

摘要:苹果手机调用网页打包app
UIWebView * webView = [[UIWebView alloc] init];
webView.frame = [UIScreen mainScreen].bounds;
webView.delegate = self;
webView.scalesPageToFit = YES;
[self.view addSubview:webView];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithUTF8String:"https://www.hfyefan.com"]]]];