如何在url中传递字符串,以便我们可以在iphone应用程序中获得所需的结果

时间:2013-06-10 07:27:56

标签: iphone url nsstring

我希望这个网址给出了我想要的子目标,如果用户给出了类似的测试,那么我想通过这个网址来传递这个网址,以便它应该给出包含id的记录。

test="1";
NSArray *tempArray =[[DataController staticVersion] startParsing:@"http://www.celeritas-solutions.com/pah_brd_v1/productivo/getSubCategory.php"];

1 个答案:

答案 0 :(得分:0)

你想要这样吗?

NSArray *tempArray =[[DataController staticVersion] startParsing:[NSString stringWithFormat:@"http://www.celeritas-solutions.com/pah_brd_v1/productivo/getSubCategory.php?test=%@",test]];