Http获取多个数组中的请求

时间:2014-01-03 19:23:13

标签: objective-c

我正在使用http get请求通过使用以下代码从我的mysql服务器获取信息:

NSString *urlString =  [NSString stringWithFormat:@"http://ratemyplays.com/songs.php?listid=%d", selectedRowValue];
NSMutableURLRequest *request2 = [[NSMutableURLRequest alloc]init];
[request2 setTimeoutInterval:20.0];
[request2 setURL:[NSURL URLWithString:urlString]];
[request2 setHTTPMethod:@"POST"];

NSString *PHPArray = [[NSString alloc] initWithData:[NSURLConnection sendSynchronousRequest:request2 returningResponse:nil error:nil] encoding:NSUTF8StringEncoding];

playArray = [PHPArray componentsSeparatedByString:@"."];

这将导致playArray包含10个对象。有没有办法可以在1个对象中创建一个包含前5个对象的多个数组。?

如果不能,我如何确保1个数组中的第三个对象和另一个数组中的每个第四个数组等等?

数据结构可以在这里看到: http://ratemyplays.com/songs.php?listid=0

我想在数组中做这样的事情:

@[@[2], @[0], @[nu6mDd6E1oA&], @[4:02], @[DVBBS & Borgeous], @[Tsunami]],
@[@[1], @[0], @[ b_eyDvsMP8g], @[3:24], @[Henrik B, Niklas Gustavsson, Peter Johansson], @[Echoes]]

0 个答案:

没有答案