I have stable code that allows me to display all user photos and I need to do same with audio files.
Is it possible to enumerate audio it开发者_JS百科ems like photos with asset library framework or I have to use any other library?Thanks in advance.
Is is available using
MPMediaQuery * query = [MPMediaQuery songsQuery]; //if you need to enumerate songs
for(MPMediaItem * item in query.items){ .... }
精彩评论