I am using the following code to perform a selector after a delay with multiple passed parameters:
http://nifty-box.com/blog/2006/12/nsinvocation-cleans-code.html
It works very well, but I need to extend this to support the equivalent of:
[NSObject cancelPreviousPerformRequestsWithTarget:self]
(target in this case would not be self, but would be an instance of _UFLatePerformer I believe)
Is there any way to do this, so my view's deallocation can kill all remaining delayed performance requests?