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

python - how we can use ajax() in views.py in django? -

matlab - Using loops to get multiple values into a cell -

python - Sequence Pattern recognition with Pybrain -