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!
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!
Copyright © 2021 Jogjafile Inc.
It's in the
MonoTouch.AudioToolbox.AudioFile
namespace.or
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.