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.

First time posting.

Just downloaded the FB iOS SDK yesterday (10/10/2012)

I have gone through the Getting Started steps listed at https://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/3.1/

I'm trying to call [FBRequest requestForMe]

As a part of this test code

if (FBSession.activeSession.isOpen) 
    {
        [[FBRequest requestForMe]startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {}];
    }

The test code is implemented inside of an existing project. The code compiles/builds fine; there are no linker errors. It is within a viewDidAppear method inside of a viewcontroller that is opened with a button press.

I am getting this runtime error on the [FBRequest requestForMe] call: [FBRequest requestForMe]: unrecognized selector sent to class 0x667bb0 0x667bb0 is FBRequest.

I'm sure there's more information I could give, I'm not sure what else would help. Let me know and I'll reply.

Question: What would make the requestForMe selector be unrecognized, knowing that compiling and linking doesn't complain about that line at all?

share|improve this question

1 Answer

So, great first post on my part... The legacy code I was working on had a previous implementation of Facebook. It already had a FBRequest.h/m. Somehow the linker got confused but never yelled at me?

I removed the old FBRequest files from the build target and all is well now. Thanks for reading!

share|improve this answer
Glad you're going though! – James Pearce Oct 13 '12 at 6:58
Brilliant catch! – capikaw Jan 18 at 16:05

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.