In Objective-C, if I override a class method using a category, is there a way I can call the original method (the one that was overridden)?
If you dynamically provide the category override (see resolveInstanceMethod:), you can cache the previous method selector beforehand, and call that.