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 am using fbconnect api in my application for images uploading on facebook wall.it works for me well about 2 months ago.but Now its not work for me,for this purpose i integerate new fbconnect api using this link.. https://github.com/facebook/facebook-ios-sdk But its give me following 4 errors.

"_OBJC_CLASS_$_FBPermissionDialog", referenced from:
"_OBJC_CLASS_$_FBXMLHandler", referenced from:
"_OBJC_CLASS_$_FBSession", referenced from:
"_OBJC_CLASS_$_FBStreamDialog", referenced from:

Any one guide me that how i can fix this problem.thanx in advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

Have you built the sources? This can be a common problem. Go to project settings -> build phases -> compile sources and add the following files to the list

UPDATE:

Seems like you might not have the file in your project. Download the sdk from this link: Download

To download from there press the "downloads" button and download as .zip

And then find the folder labelled "src" Drag that into your project and you should be good to go!

Also make sure to import:

#import "FBConnect.h"

And conform to the correct delegates

share|improve this answer
@Rahan Kapur i did it according to your suggestion but still it give me 3 errors – Bob Apple May 31 '12 at 7:38
updated answer ! – MCKapur May 31 '12 at 8:15
thanx for helping me so for still the same problem. – Bob Apple May 31 '12 at 8:32

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.