문제

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