3

screenshot of error

Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_ABCAppCaller", referenced from: objc-class-ref in GitiTransferAccountsViewController.o ld: symbol(s) not found for architecture x86_64

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215
universe
  • 31
  • 4
  • where does ABCAppCaller come from? is it included in your project? Does this build for the device or are you only having problems building for the simulator? – Michael Dautermann Sep 18 '17 at 06:43
  • Bank to pay, only for the simulator, I have set everything I need, and is the architecture reason?Thank you for your reply! – universe Sep 18 '17 at 09:16
  • 1
    And I find this:"Architectures in the fat file: libABCAppCaller.a are: armv7 arm64" Is this?? – universe Sep 18 '17 at 09:21

1 Answers1

0

You need to tell the people who supplied you with libABCAppCaller.a that they need to include symbols for the simulator.

If they ask you "how do I do that?", you can point them to this closely related question, especially the part where they can use lipo to link the simulator library and the device library into one universal static library.

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215