English 中文(简体)
如何在Xcode 4.2的装置上测试释放?
原标题:How to test the release build on device with Xcode 4.2?

我刚刚完成了我的更新,现在我想把它提交给仓库。

我在多个装置上进行了精彩的测试,但我想用释放加以测试,仅仅是为了确保不会有任何改观。

在Xcode 4.0.2中,当我想要test 释放楼(即不分发)时,我只想做以下工作:

  1. In the project settings, make sure that the release code signing is set to "iPhone Developer" not "iPhone Distribution"
  2. Go to Edit scheme..., and change the Run scheme to Release instead of Debug.
  3. Make sure my distribution provisioning profile is installed in Xcode
  4. Run it on the device, make sure everything works.

如果所有工作都奏效,我将分发如下文件:

  1. Change the code signing to "iPhone Distribution"
  2. Make sure the Archive scheme is set to Release
  3. Archive
  4. Submit

现在问题在于,根据Xcode 4.2,我可以在我的装置上测试释放。 - 当我开始建造时,我要向我的护卫释放我。

没有发现这种可执行措施的有效规定。

因此,我检查了我在主要“图书馆”栏下提供的情况简介(所有提供情况简介),我在那里看到了我的分发情况。

问题在于,“说明” 这一简介不能在“上安装。

因此,如果我不能用一个装置来利用分发情况——我应如何检验释放情况?

我很想得到关于这个问题的任何建议——如果有人明显失踪我!

最佳回答
问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签