I was wondering what the "best practice" guidelines are for using the Facebook iOS SDK.
Specifically - I have several forms that use the Facebook SDK. My initial instinct as an OOP programmer was to create a "FacebookManager" class under my data-access-layer which handles all Facebook activity. Unfortunately since Facebook iOS SDK uses delegates and async methods, this is not so helpful since any other module using FacebookManager would have to pass in delegates for all responses anyway.
Then I figured that each ViewController would be a FBRequestDelegate by itself and handle all Facebook responses.
So, how do you do it in your app?