I am going to be implementing the facebook application into my project, but I’ve ran into some roadblocks. First I read about the link that developers.facebook.com has posted:

I really don’t know how to use the GitHub repository and add it to my app project, so I hope I can get some help with that,
Next, while I was continuing the rest, I found something that I might need help on as well:

So that’s all I have for now, I just need to get through this first part, then I can continue on, so I hope someone can help me get on through that first part, thanks
(sorry if I had to post the pictures, I just really need to be specific and I’m sometimes having trouble with reading tutorials)
If you are not familiar with git you can download the sdk manually to your hard drive on this page:
https://github.com/facebook/facebook-ios-sdkclick on downloads and select the preferred format.On the readme clearly states how to add the library to your own application:
You should have a file called
yourProjectNameAppDelegate.handyourProjectNameAppDelegate.m.You have to put
#import "FBConnect/FBConnect.h"intoyourProjectNameAppDelegate.h.And declare a variable in the header
Facebook* facebok;and also synthesize it.Your
yourProjectNameAppDelegate.mcontains a method calledapplication:didFinishLaunchingWithOptions:which should look like:Also put in this file the other method.
Also I suggest to learn a bit more about objective-c, because your problems are not related to the facebook library. You can find plenty of resources on the net. I suggest to look this iTunes university screencast.