已编译 iPhone 应用程序的文件位置?
我目前正在模拟器/调试模式下编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您加入了 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.
默认情况下,构建的结果位于
{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 thehdiutil
command-line tool to generate a DMG of your app - have a look at its man page which is quite comprehensive.