gpt4 book ai didi

objective-c - Objective C 按类创建对象

转载 作者:太空狗 更新时间:2023-10-30 03:30:40 26 4
gpt4 key购买 nike

我想知道如何在 objective-c 中创建指定 Class 的对象。运行时文档中是否缺少某些方法?如果有,那是什么?我希望能够执行以下操作:

NSDictionary *types;

-(id<AProtocol>) createInstance:(NSString *) name
{
if ((Class cls = [types objectForKey:name]) != nil)
{
return new Instance of cls;
}
else
{
[NSException raise:@"class not found" format:@"The specified class (%@) was not found.", name];
}
}

请注意,name 不是类的名称,而是它的缩写,我无法执行 Create object from NSString of class name in Objective-C 中指示的操作.

最佳答案

一个简单的 [[cls alloc] init] 就可以了。

关于objective-c - Objective C 按类创建对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3661371/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com