Thank you so much
Post
Replies
Boosts
Views
Activity
I believe that for example, I have a specific artist and title of the song
var title = "pretender"
var artist = "official dism"
var mySong: Song
is there any way that I can retreive the Song using title and aritist to mySong, therefore, I can build a list of songs: [Song]
I believe my problem is that, for example I have a title and a artist of a song I want:
import MusicKit
var title = "Pretender"
var artist = "Official dism"
var mySong: Song
Is there any way I can retrieve Song has a title and artist I want to mySong?