路徑名稱 = 項目名稱 + "." + 類名稱
例:
let allName = "CAAnimationDemo." + className
let vc = (NSClassFromString(allName) as! UIViewController.Type).init()
vc.title = className
navigationController?.pushViewController(vc, animated: true)
路徑名稱 = 項目名稱 + "." + 類名稱
例:
let allName = "CAAnimationDemo." + className
let vc = (NSClassFromString(allName) as! UIViewController.Type).init()
vc.title = className
navigationController?.pushViewController(vc, animated: true)