0

我希望这个 url 给出我想要的子类别,如果用户给出类似的测试,那么这是 id,我想通过这个 url,以便它应该给出包含 id 1 的记录。

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

1 回答 1

0

你想要这样吗?

NSArray *tempArray =[[DataController staticVersion] startParsing:[NSString stringWithFormat:@"http://www.celeritas-solutions.com/pah_brd_v1/productivo/getSubCategory.php?test=%@",test]];
于 2013-06-10T07:46:37.230 回答