I need to use a library for my application that requires to be added in the old-fashioned way (there is no pod available or anything else).
This framework has the requirement for iOS 14.0 as the minimum supported version.
Is there any way to have that application compile and fully work for a lower version of iOS? My app has to support an iOS version down to 11.0.
For the moment I have a crash when running the iOS 13 simulator right after the application launches.
Basically, I want to check if the current running version is greater than 14.0 and initialize a class from the framework, but for the moment the library is included at the compile time.
Later edit: I tried the following things after @Dávid Pásztor suggested the weak linking:


