Swift 语法 - Swift通过类名实例化对象

根据类名来实例化对象,比如,要根据一个类名的字符串创建ViewController实例。

let controllerName="SpainAppProto."+xibName  // xibName 形如 XXViewController
var classType: AnyObject.Type=NSClassFromString(controllerName)
var nsobjectype : UIViewController.Type = classType as UIViewController.Type
var viewController: UIViewController = nsobjectype(nibName: xibName, bundle: nil) 

 

但是 在根据 UIViewController.self 来实例化的时候就要稍微转化下

    var x: String = m.debugDescription  // m为 UIViewController.self
    x = x.stringByReplacingOccurrencesOfString("Optional(", withString: "")
    x = x.stringByReplacingOccurrencesOfString(")", withString: "")
    let anyClass: AnyClass = NSClassFromString(x)
    let viewControllerClass: UIViewController.Type = anyClass as UIViewController.Type
    let viewController = viewControllerClass()

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。