- Method md = class_getInstanceMethod(class_getSuperclass(self.class), @selector(XXXXX:));
- IMP imp = method_getImplementation(md);
- void(*super_func)(id,SEL,Type0,Type1,Type2,...) = (void*)imp;
- super_func(self, @selector(XXXXX:), 参数1, 参数2, 参数3,... ...);