目前我在 iPhone 应用程序中工作,使用 UIWebview 加载地址,如“美国”,然后运行应用程序,地图未显示在屏幕上。我想从用户输入搜索栏字段中显示位置,如何解决这个 iuissue?请帮我
提前致谢
我试过这个:
webView=[[UIWebView alloc]initWithFrame:CGRectMake(0, 40, 320,376)];
webView.delegate=self;
webView.scalesPageToFit=YES;
NSString *mapurl = @"http://maps.google.com/maps?q=";
NSString *urlString1 = [mapurl stringByAppendingFormat:@"America"];
NSString *OmitSpace = [urlString1 stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
NSURL *url=[NSURL URLWithString:OmitSpace];
NSURLRequest *requestObj=[NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
截屏: