我怎样才能调用一个函数,该函数的名称存储为一个 NSDictionary 的值?基本上我需要将字符串类型转换为方法名称/调用。这可能吗?
[thisCellContent objectForKey:@"callFunction"] //the object contains the function name to be called
//call this value as function, something similar to this ..
[self [thisCellContent objectForKey:@"callFunction"]]
这样的事情可能吗?