I instanced a UITabBarController as the root controller for my app delegate. For FB IOs SDK it says to do the following inside of:
-(BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
"In this method, call your application's Facebook object's handleOpenURL method, making sure to pass in the url parameter."
Is the standard way to use FB ios sdk with a tab bar controller to subclass UITabBarController and create the FB object there? Or is there another way where i don't have to subclass uitab bar controller and create the fb object else where?