I am facing some issues on the last two days and I didn't find anything on Internet that help me to solve them.
Here's the problem:
- I have a custom iOS framework of my own
- I have two different Xcode projects that use this custom framework
- In the first project, there is no problem, everything works perfectly
- In the second project, I get a Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[** **:]: unrecognized selector sent to instance 0x101b02f90' when I am calling a method which is also called in the first project and which works perfectly in the first project
- Both projects use the same custom iOS framework version and build
During the last two days, I have tried the followings:
- Clean project > Clean build project > Rebuild project - Doesn't work
- Rebuild the framework and add into the two projects - The issue still there
One thing that is very weird is that I have print the methods available in my frameworks in both projects according to this Stack Overflow, in the first project I have 130 methods available, in the second one I have only 72 methods available.
Is anyone have a clue of what happen?
Regards,
Jeremy