I have got the code working on the iPhone simulator, but when building for my iPhone it gives the following error:
ld: warning: ignoring file /.../JotUI.framework/JotUI, missing required architecture arm64 in file /.../JotUI.framework/JotUI (2 slices)
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_JotBrushTexture", referenced from:
objc-class-ref in Pen.o
"_OBJC_CLASS_$_JotDefaultBrushTexture", referenced from:
objc-class-ref in Pen.o
"_OBJC_CLASS_$_JotView", referenced from:
objc-class-ref in SigningViewController.o
"_OBJC_CLASS_$_JotBufferManager", referenced from:
objc-class-ref in SigningViewController.o
"_OBJC_CLASS_$_JotViewStateProxy", referenced from:
objc-class-ref in MyViewController.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I'm guessing the framework needs to be built for arm64 but I'm not sure how to do that? Does that require the code to be updated in the framework or can I fix this by doing something else?
Thanks!
I have got the code working on the iPhone simulator, but when building for my iPhone it gives the following error:
I'm guessing the framework needs to be built for arm64 but I'm not sure how to do that? Does that require the code to be updated in the framework or can I fix this by doing something else?
Thanks!