我有我在基于实用程序的应用程序上制作的这个应用程序。我如何将此应用程序合并到基于视图的应用程序中,以便我可以从那里运行代码.. 就像 2 个单独的项目合二为一。当我按下按钮时,我基本上想在基于视图的应用程序中打开/显示实用程序应用程序。这可能吗?
问问题
187 次
1 回答
0
您想为要启动的应用程序实施 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/cocoa/launching-your-own-application-via-a-custom-url-scheme.html
于 2010-02-28T23:06:04.053 回答