TTThumbView + NavigationBar
I use an applic开发者_StackOverflow社区ation with an UINavigationBar, in a part of my application I click on a button to use the the TTThumbViewController (MockPhotoSource), the problem is when I click back on the NavigationBar it seems to add the property of three20 navigationBar to my original NavigationBar. How can I disable the three20 NavigationBar when I click Back?
Thanks,
This sounds like you're not using the TTNavigator and URL Mapping for navigation. So you'll likely need to add:
self.navigationController.navigationBar.barStyle = UIBarStyleDefault;
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault animated:YES];
To your viewWillAppear: method for the previous view.
精彩评论