根據類名來實例化對象,比如,要根據一個類名的
字符串創建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()