FBConnect's handleOpenURL Method Not Called by my AppDelegate
I have implemented the FBConnect SDK into my app, and it works perfectly on the simulator. I then modified my app's .plist file appropriately, and added the necessary method to my AppDelegate for when Facebook is installed on the device: - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { NSLog(@"handleOpenURL Method was called and sent the following:"); NSString *urlString = [NSString stringWithContentsOfURL:(NSURL *)url]; NSLog(@"URL String: %@", urlString); return [[flipsideViewController facebook] handleOpenURL:url]; } From the above NSLogs and the observation