我有一个字符串,它的值是必须实例化的 Class[MyClass] 的名称,而 MyClass 有一个名为
-(void)FunctionInClass;
我正在使用名为 NSClassFromString 的方法来实例化 MyClass。我想知道
1) what does NSClassFromString return??
2) what is id?
3) How to call method -(void)FunctioninClass which is in MyClass using the instance.
我应该如何继续,我在 Objective-C for iPhone 应用程序中做这件事?