2

I created a custom cocoa touch framework, the custom touch framework uses Kiwi pod and thus uses XCTest.

In my framework target I ensured there are no linker flags for XCTest and I Archived the framework and added that to a new project.

In the new project the app builds and upon launch I get this message.

dyld: Library not loaded: @rpath/XCTest.framework/XCTest referenced from the framework I added.

I am not sure why the library is still linking to XCTest.

Vig
  • 1,532
  • 1
  • 12
  • 28

1 Answers1

0

Looks like there were reference to the XCTest framework on my targets. I removed them and I didn't have the issue.

Vig
  • 1,532
  • 1
  • 12
  • 28