In case you have not yet been able to determine this option, I assume that you are not doing anything in launcherView: didselectitem:
Just create a TTNavigator object inside the method, and then call openURLAction. for instance
(void)launcherView:(TTLauncherView*)launcher didSelectItem:(TTLauncherItem*)item
{
TTNavigator *navigator = [TTNavigator navigator];
[navigator openURLAction:[TTURLAction actionWithURLPath:item.URL]];
}
source
share