小编典典

如何在Swift中从字符串创建类的实例

swift

我尝试过使用字符串以多种方式创建类的实例,但是 在Swift 3中 都没有。

以下是我尝试过的无法使用的Swift 3之前的解决方案

-使课堂成为目标C课堂

@objc(customClass)
class customClass {
    ...
}

//Error here: cannot convert value of type 'AnyClass?' to expected argument type 'customClass'
let c: customClass = NSClassFromString("customClass")

-使用NSString值指定类(使用和不使用@objc属性)

@objc(customClass)
class customClass {
    ...
}

//Error here: cannot convert value of type 'String' to expected argument type 'AnyClass' (aka 'AnyObject.Type')
var className = NSStringFromClass("customClass")

let c: customClass = NSClassFromString(className)

我没有做正确的事,但没有在线找到任何解决方案。

如何在Swift 3中使用字符串创建类的实例?


阅读 282

收藏
2020-07-07

共1个答案

小编典典

您可以尝试以下方法:

func classFromString(_ className: String) -> AnyClass! {

    /// get namespace
    let namespace = Bundle.main.infoDictionary!["CFBundleExecutable"] as! String

    /// get 'anyClass' with classname and namespace 
    let cls: AnyClass = NSClassFromString("\(namespace).\(className)")!

    // return AnyClass!
    return cls
}

像这样使用func:

class customClass: UITableView {}

let myclass = classFromString("customClass") as! UITableView.Type
let instance = myclass.init()
2020-07-07