0

是否有任何类似的库提供URL-Based-Navigation类似的库iOS' three20's TTNavigator

基于 URL 的导航非常方便,并且比 Android 的要好得多intent(如果您不需要外部功能来调用您的活动)

例如在 iOS 中

[TTNavigator navigator] openURLAction:
  [[TTURLAction actionWithURLPath:@"tt://restaurant/Chotchkie's"] 
   applyAnimated:YES]]

单个语句允许您跳转到任何定义的视图,这非常易于使用。

[1] http://three20.info/article/2010-10-06-URL-Based-Navigation

4

1 回答 1

1

我不确定为什么你会发现这比:

Intent myIntent = new Intent(this, MyActivity.class);
startActivity(myIntent);

你能详细说明你想要达到的目标吗?

于 2012-08-16T11:47:46.530 回答