I've been building an ios app using cocoalibspotify
for some time without any problems, but since yesterday both of my apps don't get any loaded data when calling the waitUntilLoaded
method.
Here is a code example of how I call it:
[[SPSession sharedSession] trackForURL:[NSURL URLWithString:Url] callback:^(SPTrack *track)
{
if (track != nil)
{
[SPAsyncLoading waitUntilLoaded:track timeout:kSPAsyncLoadingDefaultTimeout then:^(NSArray *tracks, NSArray *notLoadedTracks)
{
//code
}];
}
}];
Thanks