I am working in array handling , the overall working of the application is the user can select the number of number of songs that has to be added to a particular playlist. I have used Tableview to list the songs when the user click the tableview cell have added .checkmark when already checkmark found I will remove .checkmark, similarly when the user select the song I have kept a array to save the track id of that particular song . "SongIDArray" is the array used to save. When the user deselect the song I have to delete the particular songs "track id". but in array it has remove(at: index) I cannot delete it through index. please help me
for example :** my array is**
songIDArray = [25,45,69,78,63]
I need to remove 78 from the index without knowing the index path.