最近在 Xcode 中创建了一个应用程序,它在我的计算机上运行良好。将 .app 发送给朋友,他无法运行
关于为什么该应用程序会启动并迅速从扩展坞中消失有什么建议吗?这是一个非常小的应用程序,大约有 80 行代码,没有外部 API、库或依赖项。一个简单的倒计时应用程序在大约一个小时内创建。
Any suggestions as to why the app will launch and quickly disappear from the dock? It's a very small app with about 80 lines of code and no outside API's, libraries, or dependencies. A simple countdown app created in about an hour.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让您的朋友从终端窗口(即 ./MyApp.app/Contents/MacOS/MyApp )运行它,看看它是否将任何有用的错误消息打印到标准输出。
Have your friend run it from the Terminal window (ie ./MyApp.app/Contents/MacOS/MyApp ) and see if it prints out any helpful error message to stdout.
检查项目信息中的设置。检查目标和项目中的产品名称。
并检查“设置活动目标”和“设置活动 SDK”(模拟器)。
这应该有效。
Check the settings in info of the project. Check the product Name in target and project.
And also check the "set Active target" and "set Active SDK"(Simulator).
This should work.