博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NSBundle
阅读量:6563 次
发布时间:2019-06-24

本文共 1118 字,大约阅读时间需要 3 分钟。

最简单创建bundle文件:创建一个文件夹更改文件夹名称为:xxx.bundle

向里面添加东西直接显示包内容复制进去就行了

bundle里面一般存一些资源文件比如图片,音乐,plist等当然也可以存nib文件,类文件里面也有相应的方法打开

得到bundle路径:

NSString * bundlePath = [[ NSBundle mainBundle] pathForResource: @ "MyBundle"ofType :@ "bundle"];

获取bundle里面的文件:

- (nullable NSString *)pathForResource:(nullable NSString *)name ofType:(nullable NSString *)ext;

例子

1.加载nib

NSString * bundlePath = [[ NSBundle mainBundle] pathForResource: @ "MyBundle"ofType :@ "bundle"];NSBundle *resourceBundle = [NSBundle bundleWithPath:bundlePath];UIViewController *vc = [[UIViewController alloc] initWithNibName:@"vc_name"bundle:resourceBundle];
 2.获取图片
UIImageView *imgView=[[UIImageView alloc] initWithFrame:CGRectMake(50, 50, 50,50)];UIImage *image = [UIImage imageNamed:@"MyBundle.bundle/img_collect_success"];[imgView setImage:image];

 or

UIImageView *imgView=[[UIImageView alloc] initWithFrame:CGRectMake(50, 50, 50,50)];NSString *imgPath= [bundlePath stringByAppendingPathComponent:@"img_collect_success.png"];UIImage *image_1=[UIImage imageWithContentsOfFile:imgPath];[imgView setImage:image_1];

 

转载于:https://www.cnblogs.com/hxwj/p/5388005.html

你可能感兴趣的文章
OVS 中的各种网络设备 - 每天5分钟玩转 OpenStack(128)
查看>>
Python火车票代码
查看>>
Android开发者指南(7) —— App Install Location
查看>>
Trafficserver Cluster模式
查看>>
亚马逊推出 Blox,用于 EC2 容器服务的开源工具集合
查看>>
Linux:在中国没有真正的新闻
查看>>
iOS推送功能极光推送的介绍与实现
查看>>
单用户模式与grub加密
查看>>
Chromium Graphics: 3D上下文及其虚拟化 - Part I
查看>>
jquery javascript获得网页的高度和宽度
查看>>
2019 -2-15 复习
查看>>
vim锁定屏幕
查看>>
实用的 JavaScript 调试小技巧
查看>>
027移除元素
查看>>
Linux下清理内存和Cache方法
查看>>
CodeVS 1018 单词接龙(DFS)
查看>>
我的博客园的CSS和html设置
查看>>
android launchmode(四种启动模式)应用场景及实例
查看>>
工作中简单的kettle使用
查看>>
spark shuffle:分区原理及相关的疑问
查看>>