I want to display a UITableView with only the songs that are currently on the device.
If I query all items I (obviously) get all items, including the once that I purchas
I solved it myself by adding the following line in the viewDidLoad method between MPMediaQuery... and NSArray...
[everything addFilterPredicate:[MPMediaPropertyPredicate predicateWithValue:[NSNumber numberWithBool:NO] forProperty:MPMediaItemPropertyIsCloudItem]];