views:

242

answers:

1

Problem is evident in both the code I've written and Apple's sample AddMusic code (http://developer.apple.com/iphone/library/samplecode/AddMusic/index.html runs on Device Only).

Once you open MPMediaPickerController when you click on an item it appears to be impossible to subsequently unselect it. It actually just gets added to the MPMediaItemCollection again (that's fine, I can filter the duplicates later).

It strikes me as odd that you're unable to deselect something after selecting it. I had previously thought the implementation was for the 'add' button to function almost as a checkbox with on and off.

Am I missing something in the docs explaining how to deselect in a MPMediaPickerController?

+1  A: 

It looks like you can only select, but not deselect. You might want to file a radar request at bugreport.apple.com

mahboudz
Yup, have done. Thanks.My only worry now is whether Apple would reject it for something that looks like poor UI to me but is actually an issue with an apple supplied component. As such I've switched to not allowing multiple selections...
NeilInglis