到目前为止,利用AFNetworking 2.5用last.fm API填充一个数组,其中包含与曲目相关的艺术家。这是我当前执行此操作的代码。
NSURL *url = [NSURL URLWithString:URLstring];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc]initWithRequest:request];
operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSDictionary *dict = (NSDictionary *)responseObject;
NSArray *allValues = [dict allValues];
NSLog(@"all values contained in array: %@", allValues);
NSLog(@"all values count: %lu", allValues.count);
计数返回1。我想要一个由轨道填充的数组,每个索引值对应一个轨道。当前,数组中仅填充第一个索引值。我还注意到,要打印回的JSON数据是JSON格式,并且看起来不像NSArray中的对象在打印时会出现。
编辑:这是input
最佳答案
使用KVC获得音轨数组:
NSArray* tracks = [dict valueForKeyPath:@"toptracks.track"]
或类似的东西