ios - correct approach to accessing the const keys in SPTAudioStreamingController for trackMetadata dictionary? -


What is the correct approach to access const keys in SPTAudioStreamingController for track metadata dictionary?

In my File, I have tried:

  #import & lt; Spotify / SPTAudioStreamingController.h>   

so that I can do something like this:

  [trackMetadata objectForKey: SPAudioStreamingMetadataTrackURI]   

But, no dice , I would like to use the "undisclosed identifier 'SPAudioStreamingMetadataTrackURI' '

If you are importing the header file, you will see that you are initially missing a "T":

  [trackMetadata objectForKey: SPTAudioStreamingMetadataTrackURI];    

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -