Hello,
I have an objc app that has the class Foobar and I want to make a dylib that will be loaded into that app on start and extends the class Foobar with a few methods.
Unfortunately I cannot build the library, I get the following linker error:
"_OBJC_CLASS_$_Foobar", referenced from:
__objc_const@0 in Foobar+MyStuff.o
__objc_classrefs__DATA@0 in Foobar+MyStuff.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
Is there some linker flag that tells ld to ignore that missing symbol?
Thanks a lot!