Spire
Spire

Reputation: 1065

How to Build Audio File Stream iPhone App?

I need some guidance on how to make a audio stream app for multiple audio files, so the app user can choose from the list and listen to the item.Do you know any good tutorials, or place from where i can learn how to do this by my self. I'm familiar with the concept on how it wood look like, i need something on how to pause and resume, how to go to next and previous are there some classes that can help me do this. Can someon help me?

Upvotes: 1

Views: 4265

Answers (1)

cduhn
cduhn

Reputation: 17918

Look into AVQueuePlayer if you can require your users to run iOS 4.1+. It can help you stream a sequential playlist of items. AVPlayer is another option, which only requires iOS 4.0+, but it can only handle one item at a time, so you'd have to write your own code to manage the playlist.

The AV Foundation Programming Guide does a pretty good job of explaining how to use these classes.

Upvotes: 1

Related Questions