Hi,
My app is crashing when running on iOS14 beta 3 while execute the following code:
ALCdevice* _alcDevice = alcOpenDevice(NULL);
I see that OPENAL is deprecated in iOS14, but should it crashes?
This crashed happened on iOS14 beta1, fixed on beta 2, but exist again on beta 3.
Please tell me if I can keep use OPENAL for a while, or I must replace it now.
Thanks,
Rafael
Post
Replies
Boosts
Views
Activity
Hi
I've just checkout iOS 14 using xCode12 beta 2.
I perform a very simple test of showing a new UIViewController loaded from xib.
I set explicit animated NO but still I see the animation. It doesn't happen on older iOS
LOG("showing splash screen");
theSplash = [[SplashScreenController alloc]
initWithNibName:@"SplashScreenController" bundle:nil];[navigationController pushViewController:theSplash animated:NO];
[theSplash release];
code-block
Please let me know what I'm doing wrong :)