rcfrias
11/6/2014 - 4:56 AM

How to import libraries with cocoa pods and fix the "Apple Mach-O Linker error, Undefined symbols for architecture"

How to import libraries with cocoa pods and fix the "Apple Mach-O Linker error, Undefined symbols for architecture"

All you have to do is run the "pod install" on terminal go to the main project build settings, search for "Other linker flags" and replace the old "-ObjC -all_load" with the following:
$(inherited)

*IMPORTANT NOTE!!! For some strange reason, you need to be using Ruby 2.0.0.  just download it and run following command:

rvm use ruby-2.0.0-p576

1, 2, 3, Bamm! like magic ;)