After merge this change , i can get the class but i can not dump the small method name and types .
debug info : in CDObjectiveC2Processor.m , when i try to get a class instance method ,
objc2Method.name = [cursor readPtr:small];
objc2Method.types = [cursor readPtr:small];
objc2Method.imp = [cursor readPtr:small];
NSString *name = [self.machOFile stringAtAddress:objc2Method.name];
NSString *types = [self.machOFile stringAtAddress:objc2Method.types];
i got a nil value . All the instance method is this . It look like the offset or mask did not right .