码迷,mamicode.com
首页 > 移动开发 > 详细

iOS Bundle的简单使用

时间:2017-04-02 12:31:33      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:library   信息   无法   china   dev   执行文件   tor   device   其他   

class ViewController1: UIViewController {

    @IBOutlet weak var imageView: UIImageView!
    override func viewDidLoad() {
        super.viewDidLoad()
        
        //获得整个App的Bundle对象
        let mainBundle = Bundle.main
        
        //通过Bundle对象获得这个App的bundle标识: com.linyufeng.segueTest
        print(mainBundle.bundleIdentifier ?? "无法显示bundleIdentifier")
        
        //通过Bundle对象获得这个App的相对路径: /Users/linyufeng/Library/Developer/CoreSimulator/Devices/114FBDEE-A305-46FD-B324-A5C88845BB5D/data/Containers/Bundle/Application/3F857297-396F-4975-B73A-0DE463EA89AB/segueTest.app
        print(mainBundle.bundlePath)
        
        //通过Bundle对象获得这个App的绝对路径: file:///Users/linyufeng/Library/Developer/CoreSimulator/Devices/114FBDEE-A305-46FD-B324-A5C88845BB5D/data/Containers/Bundle/Application/3F857297-396F-4975-B73A-0DE463EA89AB/segueTest.app/
        print(mainBundle.bundleURL)
        
        //通过Bundle对象获得这个App的本地化信息(我在Info.plist设置的是China): zh_CN
        print(mainBundle.developmentLocalization ?? "无法显示developmentLocalization")
        
        //通过Bundle对象获得这个App的可执行文件的相对地址: /Users/linyufeng/Library/Developer/CoreSimulator/Devices/114FBDEE-A305-46FD-B324-A5C88845BB5D/data/Containers/Bundle/Application/3F857297-396F-4975-B73A-0DE463EA89AB/segueTest.app/segueTest
        print(mainBundle.executablePath ?? "无法显示executablePath")
        
        //通过Bundle对象获得Info.plist文件的消息(Info.plist是字典形式存储的,虽然我们在设置Info.plist时是将 Bundle Display Name 设为 网易云,但真正的键名是:CFBundleDisplayName),这里控制台的输出是:网易云
        print(mainBundle.infoDictionary!["CFBundleDisplayName"] ?? "无法显示Info.plist文件信息")
        
        
        //Bundle初始化
        //这里的输出是true,说明使用Bundle.main和使用Bundle的其他初始化函数都能获得Bundle对象,从而获得获得资源的接口
        let bundle1 = Bundle(for: type(of:self))
        let bundle2 = Bundle(identifier: "com.linyufeng.segueTest")
        let bundle3 = Bundle(path: mainBundle.bundlePath)
        let bundle4 = Bundle(url: mainBundle.bundleURL)
        print(mainBundle ==  bundle1 && mainBundle ==  bundle2 && mainBundle ==  bundle3 && mainBundle ==  bundle4)
        
        
    }

 

iOS Bundle的简单使用

标签:library   信息   无法   china   dev   执行文件   tor   device   其他   

原文地址:http://www.cnblogs.com/xiaotian331/p/6658680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!