1

I'm using TestFlightSDK, when i run on any other simulator it works without issues, only when i test against iPhone 5s simulator (( 64-bit )) i get an error about testflight lib and pod project :\ This is the error:

ld: warning: ignoring file /Users/lightdream/Library/Developer/Xcode/DerivedData/PECO-gwvmtuvxtbegjiasbpanfvzmzery/Build/Products/Debug-iphonesimulator/libPods.a, file was built for archive which is not the architecture being linked (i386): /Users/lightdream/Library/Developer/Xcode/DerivedData/PECO-gwvmtuvxtbegjiasbpanfvzmzery/Build/Products/Debug-iphonesimulator/libPods.a Undefined symbols for architecture i386:
"_OBJC_CLASS_$_MFSideMenuContainerViewController", referenced from: objc-class-ref in AppDelegate.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)

I don't knew how this happened, and couldn't figure it out :\

Note: the files are there, and it's compiling against all other simulators, ( including ipad ), it's not missing files thing, it doesn't find the library only on iPhone(64-bit) simulator.

Nour Helmi
  • 705
  • 1
  • 6
  • 17
  • 2
    MFSideMenuContainerViewController is missing ,check it all .m file is active – Sport Jan 08 '14 at 10:15
  • no no, it's there, this MFSideMenuContainerViewController is there, it's in the pod project, else it wouldn't compile against the other iOs simulators !! – Nour Helmi Jan 08 '14 at 10:32

1 Answers1

0

Check your build phase and make sure you have all the .m files and .a lib files are there

Retro
  • 3,985
  • 2
  • 17
  • 41
  • Do you have the same problem on device too? try to delete your Xcode data folder and clean your build – Retro Jan 08 '14 at 10:37
  • unfortunately i don't have a device. where can i find Xcode data folder ?!? and i did clean my build, nothing changes. – Nour Helmi Jan 08 '14 at 10:47
  • 2
    look here http://stackoverflow.com/questions/18933321/deleting-contents-from-xcode-derived-data-folder – Retro Jan 08 '14 at 10:52