I am creating an application for ios. I include two static libraries in my application. However, if the same function name exists in two static libraries, the function that was first included as a library will be called. (Static library written in Objective-c) Is there any way to solve this? Is it possible to solve it by using framework?
Note that the function names of the library are specified by the standard, so the function names cannot be changed.
Best regards.