質問

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

役に立ちましたか?

解決

If your code is working one day and not the next, its 's pretty clear that this is a backend problem. Indeed, the Spotify metadata service has been acting up these past couple of days. It should clear up soon.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top