I am currently looking at Apple's AddMusic example and playing around with it before i start rewriting it into my application.
I noticed that it makes its own little playlist of the songs qued. what i want to do is use the swipe action on the table view to remove songs that a use clicked by mistake.
I have implemented the swipe action but cant work out a way to delete that specific row?
Any idea would be great, below is the code to add it, if tried doing the reverse with no luck. if its not possible how should i go about it?
Cheers
MainViewController *mainViewController = (MainViewController *) self.delegate;
MPMediaItemCollection *currentQueue = mainViewController.userMediaItemCollection;
MPMediaItem *anItem = (MPMediaItem *)[currentQueue.items objectAtIndex: row];