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"]]
このようなことは可能ですか?