views:

119

answers:

1

Hi All,

Am getting 1 warning and 1 error on compiling my iPhone app with FBConnect in there. The error is:

  literal-pointer@__OBJC@__cls_refs@FBSession

Any thoughts on what the problem is and how to track it down?

Regards

Dave

+1  A: 

It looks like linker error. Make sure that you've added all files from FBConnect to your project (especially FBSession.m file).

Vladimir
Thanks, yes it was a link error. I mistakenly thought that because it found the .h files it was a compile error. Thanks again, Dave
Magic Bullet Dave