I occasionally need to cancel a facebook graph request, but there seems to be no cancel or similar method in their API to do so. At the moment, crashes sometimes occur as the delegate I assigned to the request has been deallocated. Is there any way to cancel a graph request once submitted please?
|
|
I'm assuming you're talking about the facebook-ios-sdk project, and the lack of a cancel method in Facebook.h. I noticed this as well, and eventually decided to add my own cancel method. Just to note, the delegate you assign to the request shouldn't ever be dealloc'd and then referenced, because the request retains the delegate. See this similar question. Now, if you find yourself really needing a cancel method for some other reason... Adding a cancel method:
And...
Now, to expose an interface in the Facebook class to make use of the new method...
And...
That's all there is to it. The method above will cancel the most recent request, and you'll never hear from it again. |
|||||||||||
|
|
Updated on 22/April/2012 I update Matt's version with the most up-to-date Facebook iOS SDK. My Project is using ARC, but I include the non-ARC Facebook sources so that I can modify the codes. (Of Course, we need to set the "-fno-objc-arc" flag for Facebook source files). The tricky part is to prevent the memory leak, and I think I am doing it correctly. But When I test it in the instrument, I still see very small amount of memory leak. Fortunately, the details show that they are not related to these codes, so I just assume they are related to the app resource handling. Here is the code I implemented:
And...
And in your project which uses FBRequestDelegate
And ...
|
|||
|
|
|
I've followed Matt Wilding's approach listed here, which was very useful, thanks Matt. Unfortunately it didnt quite work for me, so I made some tweaks and now it works... also this revised approach keeps out of the core facebook classes...
|
|||
|
|
|
For those of us who build the static library and are unable to access the implementation files, a category would be the best way to go. For those of us who did not build the static library, using a category would be optimal as well because you don't need to modify the existing files. Here is said category.
And then the .m file
For those using any other answer, you are causing a memory leak. The Facebook SDK will warn you through NSLog that you have not removed an observer. The fourth line in the cancelAllRequests method fixes this problem. |
||||
|
|
|
Try this instead of using NSTimer:
|
||||
|
|
In |
||||
|
|
|
I was having a crash with the previous iOS Facebook SDK which was valid in August 2012 whenever I navigated to another view. My solution is based on @staticfiction response: Added
|
||||
|
|
|
Since SDK 3.1, it's very easy, as startWithCompletionHandler: returns a FBRequestConnection object, which has a -(void)cancel; method. For example:
|
|||
|
|
|
Make a CURL call to this URL
|
|||
|
|