In Objective-C, is there a way to get a class and send messages to it when you have the name of the class as a string? For example, is there a function func whe
func
You can use NSClassFromString(NSString className) to get the class object from its name.
NSClassFromString(NSString className)
Hope this helps!