I\'m fetching some data from Facebook Connect (using the FBConnect Objective-C 2.0 framework) and I\'m doing all that in an NSOperation. It is in an NSOperation because I ha
put your FBConnect calls in 'start', not 'main', and manage the 'isFinished' 'isExecuting' properties. (and return YES for 'isConcurrent')
FBConnect
start
main
isFinished
isExecuting
YES
isConcurrent
For more details, see Apple's documentation on writing concurrent NSOperations.