如何在给定类名称

如何在给定类名称

本文介绍了如何在给定类名称"EKAttendee"的情况下创建快速对象.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

给出以下目标c代码

Class className = NSClassFromString(@"EKAttendee");
id attendee = [className new];

快捷代码是什么?

推荐答案

有效.

let anyObjectType : AnyObject.Type = NSClassFromString("EKAttendee")!
let nsObjectType : NSObject.Type = anyObjectType as! NSObject.Type
var attendee: AnyObject = nsObjectType.init()

print("\(attendee)")

结果

EKAttendee <0x51763530>
email               : (null)
isCurrentUser       : 0
replyRequested      : 0
role                : (null)
status              : (null)
type                : 0
scheduleForceSend   : 0

这篇关于如何在给定类名称"EKAttendee"的情况下创建快速对象.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 23:48