Hi Ian,
I have a problem using BASS in my iOS app.
The target set in the project is from iOS 11. The version of BASS used is the last available inserted according to guide.
When I run on a device with iOS 11 or 12, the app crashes in BASS_ChannelPlay, while on iOS 13 everything is ok.
I ran various tests and tried on an empty project.
This is the code:
BASS_Init(-1, 44100, 0, nil, nil);
let channel = BASS_StreamCreateURL(streamURL, 0, 0, nil, nil);
BASS_ChannelPlay(channel, false)
If I run BASS_ErrorGetCode() after each line, the error returned is always 0.
Is there any BASS compatibility issue with iOS older than 13?
Thanks