I am implementing an application that supports iPod application with in the app. I need to make some changes after I get the MPMediaItemCollection from the iPod Library. One of them is I need to support removing an item from collection. Is it possible? Now I am displaying all the list of items in a table so when use swipe on a cell we can use delete option to do this. Before that I know is it possible?
Please suggest,below is my code to select an Item from queue,
MPMediaItemCollection *currentQueue = mainViewController.userMediaItemCollection;
MPMediaItem *anItem = (MPMediaItem *)[currentQueue.items objectAtIndex: row];
Thank you, Sekhar.