How can I post multiple songs with specific points using their iOS SDK

I use the SPTAudioStreamingController Class to play the track, but I can only give one track, unlike the Android SDK, which allowed multiple URIs. I tried using the method queueSpotifyURI, but it only allows me to queue one additional track. I would like to be able to queue between 3 and 5 songs.

+4
source share
1 answer

Put the URI in an array and use the for loop to loop through each element and digitize each element in turn.

+1
source

Source: https://habr.com/ru/post/1659262/


All Articles