Problem when adding Three20 PhotoViewer to my UINavigationViewController?

Yes, this is a bit of an issue for sure. A good solution, as @diwup says, is to implement a manual fix. I tend to subclass TTPhotoViewer when I need it.

Not only does it help with this problem but it also makes it much easier to use I find.

Yes, this is a bit of an issue for sure. A good solution, as @diwup says, is to implement a manual fix. I tend to subclass TTPhotoViewer when I need it.

Not only does it help with this problem but it also makes it much easier to use I find. If you decide to subclass, then stick you should put whatever variation of this code you require in: - (void)viewWillDisappear:(BOOL)animated { super viewWillDisappear:animated; self. NavigationController.navigationBar.

BarStyle = UIBarStyleBlack; self. NavigationController.navigationBar. TintColor = myTintColor; UIApplication sharedApplication setStatusBarStyle:UIStatusBarStyleDefault; } However, if you don't want to subclass, you can always put the code into the - viewWillAppear: method of any class that comes after the photo viewer.

My experience: I once used three20's PhotoViewer and every time I went back from the PhotoViewer to my other view. The system status bar remained black and transparent (while it should be with default style). I solved it by manually and programmatically changing the status bar style every time when the back action was triggered.

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