如何使用soundcloud Sdk iOS搜索曲目

前端之家收集整理的这篇文章主要介绍了如何使用soundcloud Sdk iOS搜索曲目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经阅读了适用于iOS的soundcloud sdk文档,虽然它谈到了从现有的soundcloud用户列出曲目,但它似乎没有说到搜索歌曲.那么有没有资源或示例?太感谢了 !

解决方法

你必须使用这种格式:

https://api.soundcloud.com/me/tracks?q=SEARCHTEXT\u0026amp;format=json

请记住,如果用户输入空格,您必须更换它,您可以实现此目的

NSString * search = [originalSearch stringByReplacingOccurrencesOfString:@“”withString:@“”];

然后,只需要像这样请求JSON数据:

[SCRequest performMethod:SCRequestMethodGET onResource:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.soundcloud.com/me/tracks?q=%@&format=json",search]] usingParameters:nil withAccount:[SCSoundCloud account] sendingProgressHandler:nil responseHandler:^(NSURLResponse *response,NSData *data,NSError *error) {

我的最终代码如下所示:

NSString *search = [searchBar.text stringByReplacingOccurrencesOfString:@" " withString:@"%20"];

[SCRequest performMethod:SCRequestMethodGET onResource:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.soundcloud.com/me/tracks?q=%@&format=json",NSError *error) {

    NSError *jsonError;
    NSJSONSerialization *jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];

    if (!jsonError && [jsonResponse isKindOfClass:[NSArray class]]) {

        self.searchQuery = (NSArray *)jsonResponse;
        [self.tableView reloadData];

    }

    else {

        NSLog(@"%@",error.localizedDescription);

    }

}];`

我希望这有帮助!

原文链接:https://www.f2er.com/iOS/334072.html

猜你在找的iOS相关文章