Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 XML 或 JSON 来告诉我的应用程序。我想制作一个动态应用程序,通过从 XML 传递类来更改功能。
是否可以 ?如果是,你能告诉我如何使用 NSClassFromString 与 XML 或 JSON 解析器交互吗?
NSClassFromString()只返回一个Class对象。不可能以这种方式序列化类方法并解压缩它们。您可以为类定义自己的字符串格式,但不能在运行时添加全新的方法(这违反了 SDK 规则)。
NSClassFromString()
Class