首页 > 代码库 > Swift 语法 - Swift通过类名实例化对象
Swift 语法 - Swift通过类名实例化对象
根据类名来实例化对象,比如,要根据一个类名的
字符串创建ViewController实例。
let controllerName="SpainAppProto."+xibName // xibName 形如 XXViewControllervar classType: AnyObject.Type=NSClassFromString(controllerName)var nsobjectype : UIViewController.Type = classType as UIViewController.Typevar 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()
Swift 语法 - Swift通过类名实例化对象
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。