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 have an app proj and facebook sample login proj. I need to combine both together so user are prompt to login with facebook then lead to the app. I have no idea how to start and if my method is correct.

What i did: Just insert delegate.m, delegate.h, login.m, login.h, login.xib files as another class group in my app. Copy the view in login.xib and paste it in the mainwindow.xib. Custom the class as FBLoginView (given as an option).

the error i got:

2012-12-05 14:43:17.370 myapp[2312:c07] Unknown class FBLoginView in Interface Builder file. 2012-12-05 14:43:17.400 myapp[2312:c07] Unknown class FBLoginView in Interface Builder file. 2012-12-05 14:43:17.403 myapp[2312:c07] * Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key delegate.' * First throw call stack: (0x19ce012 0x2181e7e 0x1a56fb1 0x652711 0x5d3ec8 0x5d39b7 0x9d2573 0x5fe428 0xb9f0cc 0x2195663 0x19c945a 0xb9dbcf 0xb9f98d 0x981ceb 0x982002 0x980ed6 0x992315 0x99324b 0x984cf8 0x281edf9 0x281ead0 0x1943bf5 0x1943962 0x1974bb6 0x1973f44 0x1973e1b 0x9807da 0x98265c 0x2c8d 0x2bc5) libc++abi.dylib: terminate called throwing an exception (lldb)

Is there anyway to fix this, or should there be a better way of integration?

Please help thanks.

share|improve this question
Which project did u try and integrate ?? – IronManGill Dec 5 '12 at 7:18
my own proj. and facebook sessionlogin – CherrC Dec 5 '12 at 7:39
Do you have the API key ? – IronManGill Dec 5 '12 at 7:46
nope do not have one. – CherrC Dec 5 '12 at 7:50
just started coding for school purpose. xcode amatuer.. – CherrC Dec 5 '12 at 7:51

1 Answer

I am providing a simple project for posting on facebook. Please check this out. Also u need an API key from facebook , either get it from the sample code you are using like the one I provided to you below but it would really just show whats in the project. Or get your own key from the Facebook Developers account, get it made then use it in the project.

http://github.com/reallylongaddress/iPhone-Facebook-Graph-API

share|improve this answer
Thanks. but i dont get how it can integrate with my own project as it is a separate file. Im acquiring on how i can combine facebook login with an already started proj. do you happen to know about this? – CherrC Dec 5 '12 at 8:02

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.