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

ios bundle

时间:2015-12-14 18:30:19      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

第一种:把资源文件整合到.bundle里面统一管理

1 创建一个文件夹 MyBundle

2.把资源文件放进去

3.然后重命名 MyBundle.bundle

4.添加到project里面

5.读取MyBundle.bundle 里面的test.sqlite文件,如果不指定inDirectory,path为nil

NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"sqlite" inDirectory:@"MyBundle.bundle"];

第二种:直接在project里面创建一个group "Data"

1.添加test.sqlite文件到Data group里面

2.读取,不需要指定inDirectory

NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"sqlite"];

 

 

 /Users/zhanglei/Library/Developer/CoreSimulator/Devices/C8423A4F-BD2C-4995-A9E4-77BB382F3DF8/data/Containers/Bundle/Application/B3E6D1E8-FE8E-428B-BA61-53308C920CAB/sqlite.app/Data.bundle/test.sqlite

技术分享

 

ios bundle

标签:

原文地址:http://www.cnblogs.com/zhangleixy/p/5045627.html

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