English 中文(简体)
向客户显示应用程序的测试版
原标题:Showing beta versions of an app to a customer
  • 时间:2011-05-21 19:06:29
  •  标签:
  • ios
  • xcode
  1. 我可以向我的客户发送我的iOS应用程序的测试版,让他在模拟器中运行吗?

  2. 我可以在Mac上只安装模拟器(没有Xcode)吗?

实际上,我需要一种有效的方法来向他发送该应用程序的测试版,而不必在每次更新时与他见面。

此外,(3.)有没有办法在没有应用商店的iOS设备上安装我在xCode中开发的应用程序的测试版?

谢谢

最佳回答
  1. 不,我不相信你能。

  2. 不,我不这么认为。但是,如果可以的话,你还必须把所有的源代码都放在那台机器上,并在那里构建你的应用程序,才能在模拟器中运行。

  3. 是的,它被称为特设构建。您可以通过Apple开发人员门户上的资源调配门户创建一个特殊的资源调配配置文件。然后使用该配置文件(实际上是“构建并归档”)对构建进行签名。然后,您可以通过Xcode Organizer,通过电子邮件与客户共享该构建。管理器会创建一个.ipa文件,并将其与设置配置文件一起包含在一封电子邮件中,然后您可以撰写并发送该电子邮件。

编辑:当然,特设配置文件需要包括客户想要测试的设备的UDID。这是将其联系在一起的缺失部分:UDID、特设配置文件、使用该配置文件签名的应用程序,通过电子邮件发送给客户,他们可以通过iTunes安装这两个文件(ipa和配置文件)。

开发人员门户网站上有很多关于这方面的文档。

问题回答

TestFlightApp.com是一种轻松管理和分发测试版和特别构建的好方法。手动操作没有什么不能做的,但它确实有助于简化测试,而且是免费的。





相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签