构建Bundle绑定包

13 篇文章 0 订阅
1 篇文章 0 订阅

iOS 如何把数据内容资源打包成bundle绑定文件包。
1.创建基本的bundle绑定模版:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
2.点击创建好的bundle模版,属性设置
2.1Base SDK设置iOS/Supported Platforms ios

在这里插入图片描述
Build Active Architecture Only设置为 “YES”

在这里插入图片描述
2.2Installation Directory删除掉后面的路径
在这里插入图片描述
2.3Code Signing Identity 选择 Don’t Code Sign
在这里插入图片描述
2.4iOS Deployment Target设置为 iOS 8.0 (为了兼容性,最好选择最低版本)
在这里插入图片描述
2.5 Skip Install 设置为 “NO”
在这里插入图片描述
2.6 Strip Debug Symbols During Copy 中"Release"模式设置为 “YES”
在这里插入图片描述
2.7 COMBINE_HIDPI_IMAGES 设置为 “NO” 在这里插入图片描述
在这里插入图片描述

  1. 正式导入图片资源(1.直接把图片资源拖项目中(系统自动导入Copy Bundle Resources里),2.如下图加进去)
    在这里插入图片描述
    4.选择创建的bundle绑定包目标对象,选择模拟器下进行编译生成适用于模拟器的静态bundle绑定包/选择真机下进行编译生成适用于真机的静态bundle绑定包。
    在这里插入图片描述
    在这里插入图片描述
    5.show in finder找到相应的bundle绑定包,上架APP应使用真机模式bundle。
    6.静态bundle绑定包直接拖入目标项目工程内使用,要使用bundle中的资源,就需要找到相应的资源路径
- (void)bundleResource {
    //数据捕获
    //一
    //对应可执行程序主项目工程的目标WLLYHJ.app应用程序编译包主入口路径(eg:/Users/haijunyan/Library/Developer/CoreSimulator/Devices/C43C9AE4-08DE-40AA-BA3F-F134F5C3BE93/data/Containers/Bundle/Application/1625BBA5-9988-454E-BCA8-5EA86988617B/WLLYHJ.app)
    NSString *mainPath = [[NSBundle mainBundle] resourcePath];
    //拼接路径元获取Bundle绑定包入口路径
    NSString *bundlePath = [mainPath stringByAppendingPathComponent:@"TestBundle.bundle"];
    //拼接路径元获取Bundle绑定包内部的特定内容资源所在的特定路径
    NSString *imgPath = [bundlePath stringByAppendingPathComponent:@"payoff_type_selected"];
    UIImage *img = [UIImage imageWithContentsOfFile:imgPath];
    //二
    UIImage *img1 = [UIImage imageNamed:@"TestBundle.bundle/start_ride_code"];
    //三
    NSString *bundlePathDest = [[ NSBundle mainBundle] pathForResource:@"TestBundle" ofType:@"bundle"];
    NSString *imgPathDest = [bundlePathDest stringByAppendingPathComponent:@"adKeyPopupsImg"];
    UIImage *img2=[UIImage imageWithContentsOfFile:imgPathDest];


    //渲染
    UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 40, 100, 50)];
    imgView.image = img;
    [self.view addSubview:imgView];
    UIImageView *imgView1 = [[UIImageView alloc] initWithFrame:CGRectMake(0, 100, 100, 50)];
    imgView1.image = img1;
    [self.view addSubview:imgView1];

    UIImageView *imgView2 = [[UIImageView alloc] initWithFrame:CGRectMake(0, 160, 100, 50)];
    imgView2.image = img2;
    [self.view addSubview:imgView2];
}

备注:打包的bundle给别人使用,别人在打包完上传过程中可能会遇到极大的坑。
因为是和SDK一起让别的公司共用的,没想到每个App打包上传都失败了,主要有以下几种提示:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
删除bundle里的执行文件字段:找到工程中的TestBundle.bundle,右键单击后 选择 “显示包内容”,找到里面的info.plist文件 ,删除掉Executable file 字段,重新打包,上传应用商店就可以了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

HaiJunYa

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值