美文网首页
Swift中使用NSClassFromString

Swift中使用NSClassFromString

作者: 深刻的你 | 来源:发表于2023-01-30 16:59 被阅读0次

路径名称 = 项目名称 + "." + 类名称

例:

let allName = "CAAnimationDemo." + className
let vc = (NSClassFromString(allName) as! UIViewController.Type).init()
vc.title = className
navigationController?.pushViewController(vc, animated: true)

相关文章

网友评论

      本文标题:Swift中使用NSClassFromString

      本文链接:https://www.haomeiwen.com/subject/fggmhdtx.html