0

我有一部 iphone,我使用 Xcode 创建了一个应用程序。现在我想将此应用程序移动到我的 iphone 中供我使用。怎么做到呢?

我尝试使用电话查看软件将我的应用程序复制到 iphone 应用程序文件夹,但我无法在 iphone 中打开我的应用程序。它显示错误

“您的 Myapp.app 无法打开”

有没有其他方法可以将我的应用程序安装到 iphone 中?请指导我。

谢谢

4

3 回答 3

1

You'll need to register as an iPhone developer to get the correct keys for signing and loading an application onto an iPhone. If you are writing an application that you plan to sell via the AppStore then this is $99 to register, if it's for internal use only then $199.

于 2009-06-16T11:13:59.690 回答
0

First did you use the real SDK or the simulator?

The simulator SDK only hides some OS X calls that don't exist on iPhone, but is otherwise the normal OS X SDK. So first make sure you link against the (ARM) iPhone SDK.

Then comes the licensing bit. Afaik in a non jailbroken iPhone you can only load signed apps (via the AppStore, or using a license obtained from Apple to sign your own)

于 2009-06-16T11:14:23.870 回答
0

Xcode will automatically install and run an application on your iphone if you use the correct project setting.

Project -> Set Active SDK -> iPhone Device 3.0

Note that you will need a provisioning key before this becomes possible.

visit http://developer.apple.com/iphone to view some easy-to-understand tutorials on how to get one of these.

I assume you have signed up as an iPhone developer on that website (costs $99).

于 2009-06-16T11:19:43.157 回答