Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)

2016-10-13 Thread down to this
Just wanted to follow up regarding this. As per the work-around the Douglas Scott suggested below, I've implemented this successfully in my app and it is working without issues. For those who are unaware (as I was), the 'errno' value can simply be set directly. By updating the "errno" value to 0 a

Re: MusicSequenceFileLoad Returns -1 on iOS10 (AudioToolbox/MusicPlayer)

2016-10-13 Thread Douglas Scott
You should actually be able to set errno to 0 *before* the first call, and it should never return failure unless there was actually a real problem with permissions, etc. -DS > On Oct 13, 2016, at 3:46 PM, down to this wrote: > > Just wanted to follow up regarding this. As per the work-around