我有一个关于 webview 的问题。我有一个 url,需要在 webView 中运行该 url。我的代码在这里..
NSLog(@"Response ==> %@" ,encodedString);
UIWebView *webView;
webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0, 320, 470)];
[webView setDelegate:self];
NSURL *url1 = [NSURL URLWithString:[encodedString stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url1];
NSLog(@"Response2 ==> %@" ,url1);
[self.webView loadRequest:requestObj];
[[self view] addSubview:webView];
encodedString
是我需要在其中运行的webView
url 我在输出中使用 "" (%22) 获取 url 值并打开 web 视图,但 url 的内容没有显示。当我NSLog
用于 url1 时,它显示 Response2 ==> %22http ://66.541.67.50/mobile%22。