Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried integrating chartboost into my app in xcode, using this code:

Chartboost *cb = [Chartboost sharedChartboost];

cb.appId = @"Y51071e9d17ba47414f000000";
cb.appSignature = @"51071e9d17ba47414f000000";

// Begin a user session
[cb startSession];

// Show an interstitial
[cb showInterstitial];

in applicationDidBecomeActive.

But I get this error:

Undefined symbols for architecture i386: "_OBJC_CLASS_$_Chartboost", 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)

What am I doing wrong, and what should I do?

share|improve this question
Does the library supported to build in iOS Simulator? What if you compile & run in real device? – Shivan Raptor Jan 29 at 2:12
I still get those errors when archiving – Joaco Llou Jan 29 at 2:25
It should not be the same error, as real device is NOT architecture i386; it should be ARMv6 or ARMv7. – Shivan Raptor Jan 29 at 2:36
It's the same error, but with armv7 – Joaco Llou Jan 29 at 2:53
1  
Fixed it, I had to add chartboost.a to the libraries :) – Joaco Llou Jan 29 at 3:06
show 1 more comment

1 Answer

Yep you got it, make sure the chartboost library is added to your project and all frameworks are linked.

If you run into any more issues, take a look at the example project here: https://github.com/ChartBoost/client-examples

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.