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
Post a Comment