在UITableView上获取Spotify Track图稿

时间:2014-03-21 12:20:11

标签: ios spotify libspotify

我正在尝试使用spotify API获取艺术作品或专辑封面。我正在使用:

NSString *url = @"http://ws.spotify.com/search/1/track.json";

NSMutableDictionary *params = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
                               ([Utils isEmptyString:_searchBar.text] ? @"music" : _searchBar.text), @"q", nil];

[self sendRequestWith:url params:params method:RequestMethodGET success:^(AFHTTPRequestOperation *operation, id response, NSDictionary *userData) {
    NSDictionary *result = (NSDictionary *)response;
    if(result){
        [_trackList removeAllObjects];
        NSArray *tracks = [Utils getDictionaryValue:result by:@[@"tracks"]];
        for (NSDictionary *trackData in tracks) {
            WPTrack *track = [[WPTrack alloc] initWithSpotifyJSON:trackData];
            [_trackList addObject:track];
        }
        [listViewController updateWithObjects:_trackList];
    }
} failure:^(AFHTTPRequestOperation *operation, NSError *error, NSDictionary *userData) {

} userData:nil];

我得到的当前方法似乎没有返回轨道的缩略图。但是它返回了轨道的“href”,我可以通过https://embed.spotify.com/oembed/?url=spotify:track:6bc5scNUVa3h76T9nvpGIH来搜索轨道的图像。但是,这可能是另一个请求,可能会减慢我在UITableView上的加载速度。有没有更好的方法一起完成这个过程?

1 个答案:

答案 0 :(得分:1)

通常的做法是不在api响应中包含富媒体内容,因为客户端必须等到发送的所有内容都需要很长时间。为了加快进程,您应该解析收集的信息,并在使用块进行另一个异步操作时将其显示给用户,以便检索图像并显示它。

Using Async call with cell example