Monotouch can't find AudioFileOpenURL

97 Views Asked by At

I'm developing in monotouch and I found a code written in objectiveC that uses a class called AudioFileOpenURL. I can't seem to find this class in mono touch.

Thanks!

1

There are 1 best solutions below

1
On

It's in the MonoTouch.AudioToolbox.AudioFile namespace.

MonoTouch.AudioToolbox.AudioFile.Open(...);

or

using MonoTouch.AudioToolbox;
AudioFile.Open(...);

You can easily find these things out by typing AudioFile and then press SHIFT+ALT+F10 in Visual Studio or ALT+RETURN in Xamarin Studio to trigger Intellisense and let it add the missing using statement.