本文介绍了有没有在Android的iPhone SDK的意图概念的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在切换从安卓到iPhone。在Android中,我可以让几个应用程序,并使用TabView的相互调用应用程序的意图。

Just switching from Android to iPhone. In Android I can make several apps and use a tabView to call each app as intent.

在iPhone,我可以让几个应用程序。我需要一个标签来调用每个应用程序或应用程序的意见。是否有类似的概念,意图在iPhone?只需切换到iPhone,所有其他项目复制到的TabBar不工作了。如果您有其他的方法来解决,我真的AP preciate。谢谢你,

In iPhone, I can make several apps. I need a tab to call each apps or app views. Is there similar concept as intent in iPhone? Just switched to iPhone, copying all the other projects into the tabbar does not work out. If you have other methods to solve, I really appreciate. Thanks,

推荐答案

Android和iOS在这方面有很大不同。 Android是关于让你从其他应用程序使用意图的混搭活动非常开放。 iOS的是不是这样的;每个应用程序都运行在自己的私人空间,通常甚至无法看到其他应用的数据,更不用说使用他们的服务。它的的可能会导致其他应用程序通过自定义URL运行,但这不是一回事。

Android and iOS are very different in this regard. Android is very open about letting you use intents to mix and match activities from other apps. iOS isn't like that; each app runs in its own private space and generally cannot even see other apps' data, let alone use their services. It is possible to cause other apps to run via custom URLs, but that's not the same thing.

什么,你需要做的是复制或移动code为视图控制器,视图,等你的各种iOS应用到标签栏的应用程序项目。您将构建所有到一个单一的应用程序,标签栏会在视图控制器之间进行切换。

What you'll need to do is to copy or move the code for the view controllers, views, etc. of your various iOS apps into your tab bar app project. You'll build them all into a single application, and the tab bar will switch between the view controllers.

这篇关于有没有在Android的iPhone SDK的意图概念的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-25 04:05