我目前正在iOS项目中使用Three20。我有TTLauncherView显示一些图标。但是,我无法看到让他们像Facebook应用程序一样以动画方式打开他们的观点。我试过了:
[[TTNavigator navigator] openURLAction:[[TTURLAction actionWithURLPath:@"sb://launcher"] applyAnimated:YES]];
以及
[[TTNavigator navigator] openURLAction:[[TTURLAction actionWithURLPath:URL.absoluteString] applyTransition:UIViewAnimationTransitionCurlDown]];
我也无法在此文档中找到任何内容:https://github.com/facebook/three20/blob/60340d76780ac5ab8a5dc853e3577b1c854eb6e0/src/Three20/TTNavigator.h
任何帮助?
谢谢!
答案 0 :(得分:4)
这应该有效。我刚刚在我的代码中尝试了这个,并且卷曲过渡的工作方式与预期的一样。以下是用户点击启动器中的图标时执行的代码:
- (void)launcherView:(TTLauncherView*)launcher didSelectItem:(TTLauncherItem*)item {
[[TTNavigator navigator] openURLAction:[[[TTURLAction actionWithURLPath:item.URL] applyTransition:UIViewAnimationTransitionCurlDown] applyAnimated:YES] ];
}
希望这有帮助。