已编译 iPhone 应用程序的文件位置?

发布于 2024-07-16 04:21:37 字数 151 浏览 3 评论 0原文

我目前正在模拟器/调试模式下编写一个 iPhone 应用程序。 我想知道,构建后,二进制文件去了哪里? 我想将此文件发送给我的朋友,向他展示我到目前为止所做的事情。

另外,如何将应用程序打包到 .dmg 文件中? 这似乎是将应用程序发送给其他人的更好格式?

I'm writing an iPhone app in simulator/debug mode at the moment. I'd like to know, after I build it, where does the binary go? I want to send this file to my friend to show him what I'm doing so far.

Also, how do I package apps into .dmg files? That seems to be the better format to send app to other people?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我是男神闪亮亮 2024-07-23 04:21:37

您加入了 iPhone 开发者计划吗?
如果是这样,您将需要您朋友的设备 ID 来生成配置文件。
我建议您阅读 发布测试应用程序了解更多详细信息。

您的二进制文件将位于 {Project Folder}/build/ 上,其中每个可能的选项都有一个目录:Release/Debug 和 iphoneos/iphoneSimulator。

要创建 DMG,请参阅创建 .DMG

Have you joined the iPhone Developer Program?
If so you will need your friend's device ID to generate a provisioning profile.
I recommend that you read Publishing Applications for Testing for more details.

Your binary files will be on {Project Folder}/build/, there you will have one directory for each of the possible options: Release/Debug and iphoneos/iphoneSimulator.

To create the DMG read Creating a .DMG.

古镇旧梦 2024-07-23 04:21:37

默认情况下,构建的结果位于 {Project Folder}/build/Debug 中(如果您在该配置中构建,则位于 Release 中)。 您可以使用 hdiutil 命令行工具生成应用程序的 DMG - 查看其非常全面的手册页。

by default, the built results are located in {Project Folder}/build/Debug (or Release if you build in that config). You can use the hdiutil command-line tool to generate a DMG of your app - have a look at its man page which is quite comprehensive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文