如何使用ios中的参数从浏览器打开URL

时间:2013-10-29 04:30:57

标签: ios openurl

我想在ios中从浏览器打开一个URL。我知道如何打开一个普通的网址..但在这里我想将一个参数传递给网址....这就是我用来从浏览器打开网址

NSURL *url = [NSURL URLWithString:@"http://www.iphonedevelopertips.com"]; [[UIApplication sharedApplication] openURL:url];

然后我如何根据传递参数

来修改它

由于

1 个答案:

答案 0 :(得分:0)

这里我传递了国名。你可以传递你想要的任何东西。

CountryName=@"India";   

NSURL * url=[NSURL URLWithString:[NSString stringWithFormat:@"http://www.webservicex.net/globalweather.asmx/GetCitiesByCountry?CountryName=%@",CountryName]];

喜欢这个传递你想要传递的任何东西。