I've developped a framework which I want to use in my projects. Everything went right until I tried to build my project. Here the error description :
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_ClassInFramework", referenced from:
objc-class-ref in ClassInMyProject.o
ld: symbol(s) not found for architecture arm64
My Architectures build settings are :
$(ARCHS_STANDARD)
and arm64 armv7 armv7s
for valid arch
(same settings in my project and my framework, there are all default settings)
I can import myframework
and build with no issue, but I get that error when I tried to use a class.
I'm on XCode 8.2.1, my Framework is a Cococa touch Framework, written in Objective-C, my project is written in Swift 3.0
I imported my framework by copying the output from Products and added it in Linked Frameworks and Libraries in my project
I've tried several different settings but none of them work.