guard let info = Bundle.main.infoDictionary,
let projectName = info["CFBundleExecutable"] as? String else { return }
let nameSpace = projectName.replacingOccurrences(of: "-", with: "_")
print(nameSpace)
09-09
2万+
