Ian Vink
Ian Vink

Reputation: 68770

Monotouch: Playing MP3 user control

Using Monotouch I can play an MP3:

avPlayer = MonoTouch.AVFoundation.AVPlayer.FromUrl(new NSUrl("http://blah.mp3"));

avPlayer.Play();

Is there a Monotouch control that I can display to the user to give them a pause/stop scan functionality?

Before I write my own I wanted to make sure I'm not doing so for no reason.

Ian

Upvotes: 0

Views: 194

Answers (1)

Jason
Jason

Reputation: 89127

I believe that the AVTouch sample (adapted from Apple's sample) has UI controls.

Upvotes: 1

Related Questions