What I did to overcome this problem is to create a wrapping class for FB which I called "FacebookManager". It is a singleton in charge of every FB request done along your application. Being a singleton app-wide, it's life cycle lasts also for the whole app life too.
@protocol
@optional
-(void)fbDidLogin;
-(void)fbDidNotLogin:(BOOL)cancelled;
-(void)fbDidExtendToken:(NSString *)accessToken expiresAt:(NSDate *)expiresAt;
-(void)fbDidLogout;
-(void)fbSessionInvalidated;
-(void)request:(FBRequest *)request didLoad:(id)result;
@end
@interface FacebookManager : Facebook <FBSessionDelegate, FBRequestDelegate>
+(FacebookManager *)sharedFacebookInstance;
-(void)setFacebookDelegate:(id)delegate;
-(void)requestWithGraphPath:(NSString *)fbPath;
Other classes, usually ViewControllers, can be FacebookManager's delegate (or, if needed, you can make an array of delegates when processing concurrent requests). When FacebookManager receives the response from the request, it passes this along to the original class.
Ans since it's the sole delegate for every FB request and never deallocates through your program, even when the original class is dealloc'ed, no errors will arise.
As a bonus to all this, you automatically lose those warning for the methods you need not implement if not desired.
Hope this helps in any way!