I am trying to study how the three20 works. It is working fine in case of bold, italics and hyperlink by giving a different color. I have given code in the appdelegate for the control to go to my own class(Eg: WebViewController).
TTNavigator* navigator = [TTNavigator navigator];
navigator.supportsShakeToReload = YES;
navigator.persistenceMode = TTNavigatorPersistenceModeAll;
TTURLMap* map = navigator.URLMap;
[map from:@"*" toViewController:[WebViewController class]];
I have not written any code in my custom class and just a NSLog in viewDidLoad to find whether the control arrives there. And it is successfully going to WebViewController. But the problem is an extra navigational bar comes at the top and my current window in which the TTStyledTextLabel is present goes useless. What is this problem. I spent a whole day on this. Please someone help me out.