This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <UIKit/UIKit.h> | |
| @class MyViewController; | |
| @interface HelloWorldAppDelegate : NSObject <UIApplicationDelegate, FBSessionDelegate> { | |
| UIWindow *window; | |
| MyViewController *myViewController; | |
| FBSession* _session; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "MyViewController.h" | |
| #import "HelloWorldAppDelegate.h" | |
| #import "FBConnect/FBConnect.h" | |
| static NSString* kApiKey = @"YOUR_API_KEY"; | |
| static NSString* kApiSecret = @"YOUR_API_SECRET"; | |
| @implementation HelloWorldAppDelegate | |
| @synthesize window; |
OlderNewer