我一直在搜索试图找到答案的问题,但我似乎无法弄清楚我在做什么。我想在webview中只显示我的HTML的一部分。
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 640.0)];
NSURL *URL = [NSURL URLWithString:@"http://stackoverflow.com"];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:URL];
webView.delegate = self ;
[webView loadRequest:requestObj];
[self.view addSubview:webView];
这完美地展示了整个网页。但是我想说我只想展示一个div,我该怎么办?
我尝试过添加getElemntByID和getElementsByClass,但它似乎对我不起作用..
答案 0 :(得分:0)
你问题的答案。
NSString *htmlPage = @"<html><body><h1>StackOverFlow</h1></body></html>";
[yourWebView loadHTMLString:htmlPage baseURL:nil];