-1

I'm developing an iPhone App and I need to implement a player to play a list of media (video/audio) items.

Following is a screenshot of player I have captured from an another iPhone app, I found many apps playing video/audio using a player has similar UI like this.

Can this player (including UI) can be implement by official API? Or just implement manually?

How can I implement a same player like this?

double-beep
  • 5,031
  • 17
  • 33
  • 41
bandw
  • 879
  • 2
  • 11
  • 30

1 Answers1

3

To Play audio follow this blog

And to play video, either you can use CustomMovieplayer or go with UIWebView with embedded html.

Movie Player sample code from here

To play video as embedded html in UIWebView, check this.. https://stackoverflow.com/a/7551375/790794

As per the file type, you can modify the source type.

Community
  • 1
  • 1
alloc_iNit
  • 5,173
  • 2
  • 26
  • 54