I’m using the Objective-C runtime library, function class_copyMethodList(), to get a list of all the methods in my class. How do I then convert those type Method objects into usable type SEL objects?
I’m using the Objective-C runtime library, function class_copyMethodList(), to get a list of all
Share
Run the function
method_getName()on the returned Method objects.