I would like to use the Objective-C runtime to call objc_msgSend() on a factory object and I need to build its arguments. I would like to specify its first argument using the factory instance as a compiler would. Is there a way to obtain the factory instance?
I would like to use the Objective-C runtime to call objc_msgSend() on a factory
Share
objc_getClass() is the function that provides the factory object instance as my question heading asks.