Respond to hyperlinks in Three20 TTStyledTextLabel iphone?

When using TTNavigator we should create all our view controllers using TTNavigator. And for that we should map all our view controller to url schemes.

When using TTNavigator we should create all our view controllers using TTNavigator. And for that we should map all our view controller to url schemes. When TTNavigator is called for the first time in an app (in your case through the TTStyledLabel) it creates a base navigation controller.

You don't see a back button since you are in a whole new navigation controller. Therefore you should map your Twitter feed view controller to a url and ask TTNavigator to open that URL in your app delegate. Something like this in your app delegate should work for you.

TTNavigator* navigator = TTNavigator navigator; navigator. PersistenceMode = TTNavigatorPersistenceModeNone; self. Window makeKeyAndVisible; TTURLMap* map = navigator.

URLMap; map from:@"*" toViewController:TTWebController class; map from:@"app://feed" toViewController:TwitterFeedViewController class; if (!TTNavigator navigator restoreViewControllers) { TTURLAction* urlAction = TTURLAction actionWithURLPath:@"app://feed"; TTNavigator navigator openURLAction:urlAction; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions