关于实用程序应用程序的问题 - iPhone SDK

发布于 2024-08-23 10:44:09 字数 128 浏览 7 评论 0原文

我有一个在基于实用程序的应用程序上制作的应用程序。我如何将此应用程序合并到基于视图的应用程序中,以便我可以从那里运行代码......就像两个独立的项目合二为一。我基本上想在按下按钮时在基于视图的应用程序中打开/显示实用程序应用程序。这可能吗?

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 技术交流群。

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

发布评论

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

评论(1

自我难过 2024-08-30 10:44:09

您想要为要启动的应用程序实施 URL 方案。然后从调用应用程序中得到如下内容:

NSURL *appUrl = [NSURL URLWithString:@"myapp://foo/bar"];
UIApplication *app = [UIApplication sharedApplication];
if ([app canOpenURL:appUrl]) {
    [app openURL:appUrl];
} else {
    // tell user they need to have this other app installed.
}

有关如何执行此操作的更多信息,请参见此处:
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:

NSURL *appUrl = [NSURL URLWithString:@"myapp://foo/bar"];
UIApplication *app = [UIApplication sharedApplication];
if ([app canOpenURL:appUrl]) {
    [app openURL:appUrl];
} else {
    // tell user they need to have this other app installed.
}

More info about how to do this here:
http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html

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