关于实用程序应用程序的问题 - iPhone SDK
我有一个在基于实用程序的应用程序上制作的应用程序。我如何将此应用程序合并到基于视图的应用程序中,以便我可以从那里运行代码......就像两个独立的项目合二为一。我基本上想在按下按钮时在基于视图的应用程序中打开/显示实用程序应用程序。这可能吗?
I have this application I made on a utility based app. How would I incorporate this app into a view based application so I can run the code from there.. Like 2 seperate projects in one. I basically want to open/show the utility app in my view based application when I press a button.. Is this possible??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要为要启动的应用程序实施 URL 方案。然后从调用应用程序中得到如下内容:
有关如何执行此操作的更多信息,请参见此处:
http://iosdevelopertips.com/可可/启动您自己的应用程序-via-a-custom-url-scheme.html
You want to implement a URL scheme for the app you want to launch. Then from the calling app have something like this:
More info about how to do this here:
http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html