iphone Programming Glossary: class_getclassmethod
Testing class method using OCMock release 2.1.1 http://stackoverflow.com/questions/16461274/testing-class-method-using-ocmock-release-2-1-1  int count Method methodList class_copyMethodList object_getClass REAL.class count for int i 0 i count i  original class_getClassMethod REAL.class method_getName methodList i mock class_getClassMethod FAKE.class method_getName methodList i method_exchangeImplementations.. REAL.class count for int i 0 i count i  original class_getClassMethod REAL.class method_getName methodList i mock class_getClassMethod FAKE.class method_getName methodList i method_exchangeImplementations original mock  free methodList #define DISABLE_MOCK_IMPL.. 
 How to swizzle a class method on iOS? http://stackoverflow.com/questions/3267506/how-to-swizzle-a-class-method-on-ios  idea how to do it Tried this but it doesn't work void SwizzleClassMethod Class c SEL orig SEL new Method origMethod class_getClassMethod c orig Method newMethod class_getClassMethod c new if class_addMethod c orig method_getImplementation newMethod method_getTypeEncoding.. work void SwizzleClassMethod Class c SEL orig SEL new Method origMethod class_getClassMethod c orig Method newMethod class_getClassMethod c new if class_addMethod c orig method_getImplementation newMethod method_getTypeEncoding newMethod class_replaceMethod.. I wasn't far away. This implementation works for me void SwizzleClassMethod Class c SEL orig SEL new Method origMethod class_getClassMethod c orig Method newMethod class_getClassMethod c new c object_getClass id c if class_addMethod c orig method_getImplementation.. 
 
 
     
      |