https://API.soundcloud.com/me/tracks?q=SEARCHTEXT\u0026amp;format=Json
请记住,如果用户输入空格,您必须更换它,您可以实现此目的
Nsstring * search = [originalSearch stringByReplacingOccurrencesOfString:@“”withString:@“”];
然后,只需要像这样请求@L_419_0@数据:
[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); }}];`
我希望这有帮助!
总结以上是内存溢出为你收集整理的如何使用soundcloud Sdk iOS搜索曲目全部内容,希望文章能够帮你解决如何使用soundcloud Sdk iOS搜索曲目所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)