我尝试在iPhone应用程序(Safari)的Web视图中显示以下网址:
NSString *urlAddress=@"http://www.mapquestapi.com/staticmap/v3/getmap?type=map&size=320,460&pois=purple-1,40.0755,-76.329999,0,0|¢er=40.0755,-76.329999&zoom=12&key=MY_API_KEY&rand=-720450199";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
然而,我得到的是白色屏幕,没有显示任何内容。我试图在我的Safari浏览器中复制粘贴它,它的工作原理。 会有什么问题?我测试了另一个简单的网址(http://www.google.com)并且它有效,所以我的代码很好。
任何建议都将受到赞赏。