Re: Class Introspection with class_copyMethodList and class methods.

2014-08-26 Thread Muhammad Hussein Nasrollahpour
Recommend you to check out ObjC runtime documentation. Btw, you should use class_copyMethodList(object_getClass(yourClass), &outCount); — Muhammad ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator co

Re: Class Introspection with class_copyMethodList and class methods.

2014-08-26 Thread Kevin Meaney
I think you might need objc_getMetaClass. See https://github.com/nst/RuntimeBrowser/blob/master/model/ClassDisplay.m For how it is used. Kevin On 26 Aug 2014, at 15:06, Alex Zavatone wrote: > I've been using the obj runtime to dump class methods, protocols, Ivars and > properties for documen

Class Introspection with class_copyMethodList and class methods.

2014-08-26 Thread Alex Zavatone
I've been using the obj runtime to dump class methods, protocols, Ivars and properties for documentation, but when using class_copyMethodList I noticed that only class instance methods are returned, no class methods declared with a + are returned at all. I scanned the runtime docs and can't se