Any thoughts of alternatives to NSSpeechSynthesizer on MAvericks. Would it be possible to generate new bindings for that? Does someone know how to do for OSx native binaries?
To recreate a small sample. Create Xamarin.Mac solution (on Mavericks, or compile on another OS and copy the binaries to mavericks) Override AwakeFromNib Type this code var synthesizer = new NSSpeechSynthesizer (); // synthesizer.StartSpeakingString ("hello”); // this works var res =synthesizer.StartSpeakingStringtoURL("test hello", new NSUrl("test")); Console.WriteLine(res ? "fine" : "fail"); // prints fail and obviously don't create the file