I've been looking at some third-party code that adds a class category to UITableView; the interface adds three methods, but the implementation also includes code for the -dealloc method (among other helper methods).
I'm not super familiar with class categories - aside from this seeming like a bad thing to do, does this override the -dealloc method for all instances of UITableView - even if the category is not imported by a particular class (say a ViewController) that instantiates a UITableView?