本文介绍了如何在Xcode7中没有Apple Developer Program的情况下创建ipa的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想做的是create an ipa使用Xcode7进行临时分发.我之前没有做过,这是我的第一次尝试.搜索s/o并更早地知道可以使用Xcode5创建ipa文件.我正在尝试

What i am trying to do is create an ipa using Xcode7 for ad hoc distribution. I haven't done it earlier, this is my first try. Searched s/o and get to know that earlier it is possible to create ipa file with Xcode5. I was trying the

推荐答案

您可以通过以下方式实现:

You can do it by this way:

1)清理您的项目.

2)构建您的项目.

3)转到产品"菜单->选择构建"->选择分析".

3)Go to products menu -> select build for -> select Profiling.

4)在项目导航器中,找到您的.app产品.

4)In project navigator, find you .app product.

5)右键单击它,然后单击在取景器中显示.

5)Right click on it and click show in finder.

6)在该文件夹中,您将找到名为"Release-iphoneos"的文件夹,在该文件夹中,您将找到您的.app扩展名文件.

6)There you will find folder naming "Release-iphoneos", in this folder you will find your .app extension file.

7)创建一个名为有效负载"的文件夹,将该.app文件复制到该文件夹​​中.

7)Create a folder named "Payload", copy that .app file in this folder.

8)存档您的文件夹.

8)Archive your folder.

9)存档后,将文件夹重命名为应用名称,并将其扩展名从".zip"更改为".ipa"

9)After archive, rename your folder to name of your app and change its extension from ".zip" to ".ipa"

10)您的IPA已准备好共享.

10)Your IPA is ready for sharing.

您可以直接从12.7以下的iTunes安装此IPA.

You can install This IPA directly from iTunes below 12.7.

如果您使用的是iTunes 12.7及更高版本,则可以使用 Diawi 共享IPA进行安装. 这是一个很好的逐步过程.

If you are using iTunes 12.7 and above you can use Diawi to share your IPA for installation. Here is a good step by step process available.

这篇关于如何在Xcode7中没有Apple Developer Program的情况下创建ipa的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 10:17