Adapted from FBRequest.h
The FBRequest instance represents the arguments and settings for connecting to Facebook. After creating the FBRequest object, you can use it to configure the connection to Facebook through the object. An object is created to manage a single connection.
To cancel the connection, use the instance method in the class.
To complete the queries, you need to use the new FBRequestConnection class. They use an instance of FBRequest and a completion handler:
- (void)addRequest:(FBRequest*)request completionHandler:(FBRequestHandler)handler;
source share