Importing custom frameworks into a quick project

I quickly created a framework and now I want to import it into an iOS app. I added a framework (Build Phases -> Link Binary With Libraries -> Select my framework)

, but when I try to run the application, the following error message appears:

dyld: Library not loaded: @rpath/BiometricAccessControl.framework/BiometricAccessControl
  Referenced from: /private/var/mobile/Containers/Bundle/Application/A047F3BF-A5F8-42F8-8323-2613B1B83837/app_test.app/app_test
  Reason: image not found
(lldb) 

      

How can I solve it?

thank

SOLUTION: I solved it by following this answer: StackOverflow question.

+3


source to share





All Articles