Swift 之从 info.plist 加载命名空间的名称


//
//  Bundle+Extension.swift
//  demo
//
//  Created by 八月夏木 on 2017/12/14.
//  Copyright © 2017年 八月夏木. All rights reserved.
//

import Foundation

extension Bundle {
//    func namespace() -> String {
//        return Bundle.main.infoDictionary?["CFBundleName"] as? String ?? ""
//    }
    
    var namespace: String {
        return infoDictionary?["CFBundleName"] as? String ?? ""
    }
}




你可能感兴趣的:(Swift 之从 info.plist 加载命名空间的名称)