swift3 获取当前工程的名字 & 字符串生成类

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

贡献者:赵大财
博客:https://my.oschina.net/zhaodacai GitHub:https://github.com/dacaizhao
邮箱: [email protected]  QQ:327532817
============================= 

    //获取工程的名字
    func getBundleName() -> String{
        var bundlePath = Bundle.main.bundlePath
        bundlePath = bundlePath.components(separatedBy: "/").last!
        bundlePath = bundlePath.components(separatedBy: ".").first!
        return bundlePath
    }
    //通过类名返回一个AnyClass
    func getClassWitnClassNmae(_ name:String) ->AnyClass?{
        let type = getBundleName() + "." + name
        return NSClassFromString(type)
    }

swift3 获取当前工程的名字 & 字符串生成类_第1张图片swift3 获取当前工程的名字 & 字符串生成类_第2张图片

转载于:https://my.oschina.net/zhaodacai/blog/820696

你可能感兴趣的:(python,swift)