我想在ios中从浏览器打开一个URL。我知道如何打开一个普通的网址..但在这里我想将一个参数传递给网址....这就是我用来从浏览器打开网址
NSURL *url = [NSURL URLWithString:@"http://www.iphonedevelopertips.com"];
[[UIApplication sharedApplication] openURL:url];
然后我如何根据传递参数
来修改它由于
答案 0 :(得分:0)
这里我传递了国名。你可以传递你想要的任何东西。
CountryName=@"India";
NSURL * url=[NSURL URLWithString:[NSString stringWithFormat:@"http://www.webservicex.net/globalweather.asmx/GetCitiesByCountry?CountryName=%@",CountryName]];
喜欢这个传递你想要传递的任何东西。