gpt4 book ai didi

objective-c - swift : Alternative to . classForCoder()

转载 作者:搜寻专家 更新时间:2023-10-30 22:10:53 25 4
gpt4 key购买 nike

给定以下代码:

    return TyphoonDefinition.withClass(AppDelegate.classForCoder()) {
(definition) in

definition.injectProperty("assembly")
})

. . .有必要使用 .classForCoder(),因为 .class() 被删除了。与简单的 .class() 相比,这肯定是不直观的。是否有提供更好可读性的替代方案?

最佳答案

要获得对类对象的引用,只需使用“ClassName.self”

示例:

return TyphoonDefinition.withClass(AppDelegate.self) {
(definition) in

definition.injectProperty("assembly")
})

关于objective-c - swift : Alternative to . classForCoder(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25659958/

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