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.

Facebook new sdk crashes

Assertion failure in -[FBSession urlSchemeSuffix], /Users/clang/tmp/ios-sdk/src/FBSession.m:508 * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'FBSession: should only be used from a single thread'

Can any one know why this crashes...

share|improve this question

1 Answer

It sounds like you're accessing your FBSession instance from more than one thread. Check that you're not calling [FBSession activeSession] or anything similar from a background thread (or that you're always calling it from the same background thread).

share|improve this answer
Assertion failure in -[FBSession close], /Users/jacl/src/release/ios-sdk/src/FBSession.m: I am getting this error for iOS 6.0 – iProgrammer Dec 14 '12 at 7:43

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.