Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you display audio files like an imagepicker? I'm using the MPMediaplayer class but I can't get it to work. My requirement is to click on a tableviewcell, and have audio files appear like an imagepicker.

share|improve this question
1  
Please work on forming a coherent question. A simple spell checker will go a long way. – Matt Ball May 7 '11 at 3:59

1 Answer

up vote 0 down vote accepted

simple get the path of all audio files. and parse the name only from the path. store all the names in array and display in tablevie. just read about how to use nsfilemanager.

share|improve this answer
how to get all files from device – Raju May 9 '11 at 6:20
how to use MPMediaPlayerController? plz help me – Raju May 9 '11 at 6:35
@Raju search on google for that – Rahul Vyas May 11 '11 at 11:34
Rahul plz help me, hoe to give the path of my audiofiles.i m trying like this audioString = [[NSBundle mainBundle] pathForResource:@"/Users/gvrao/Desktop/audio" ofType:@".mp3"]; Bt i didn't get – Raju May 20 '11 at 4:38
@Raju you need to add audio files to your application bundle. then use this method like this audioString = [[NSBundle mainBundle] pathForResource:@"<Name_Of_Your_Audio_File>" ofType:@"Type"]; make sure to not use . when providing type. – Rahul Vyas May 20 '11 at 11:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.