我需要在iPhone的UIWebview中加载url。但网址是htm格式。因此,url不会在UIWebview中加载。
我使用了以下网址作为解析:http://feeds.epicurious.com/latestfeatures,我将图片网址设为htm格式。
图片网址为http://feedads.g.doubleclick.net/~at/-0LKpwQCz1qAqaaMSvxTK4I9PjA/0/di
。
有一种方法可以在UIWebview中加载此URL。
是否有另一种可能的方法在UIImageview中加载该URL?如果有任何方法,加载UIImageview,对我来说也没关系。
我使用了以下代码:
UIView* testView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)] autorelease];
UIWebView* testWebView = [[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)] autorelease];
[testView addSubview:testWebView];
[testWebView setDelegate:self];
[testWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://feedads.g.doubleclick.net/~at/K_fHnmr7a7T0pru2TjQC29TsPYY/1/di"]]];
[self.view addSubview:testView];
我的网址是:
答案 0 :(得分:1)
我没有看到为什么不在UIWebView中加载该URL的原因。
您应该可以使用与此类似的代码:
NSString *url = @"http://feedads.g.doubleclick.net/~at/K_fHnmr7a7T0pru2TjQC29TsPYY/1/di";
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]]