views:

420

answers:

5

I've been struggling to get TTThumbsViewController to work with my application's tab bar and navigation. Bit-by-bt, I've solved most of the problems. The first problem is what I see when I get to what is supposed to be a full-screen image view. It is creating a white block where the status bar used to be. See screen-shots...

alt text alt text alt text alt text Any suggestions?

A: 

I ended up adding the view controller to a navigation controller and modally displaying that.

E-Madd
A: 

Hi,

Can you share with me how did you get Tab Bar working properly when showing thumbnails I have been struggling a lot. Any help will be appreciated.

Please email me any suggestion I am been struggling a lot on this issue, my email id is [email protected]

priyank ranka
I had to first add the TTThumbsViewController to a navigation controller and the display that navigation controller modally... See my additional answer following this comment.
E-Madd
A: 

Hi,

Can you please tell me how did you get the TabBar working with the Three20 ?

Thank you

bnabilos
I had to first add the TTThumbsViewController to a navigation controller and the display that navigation controller modally...See my additional answer following this comment.
E-Madd
A: 

I would also like to know how to get the tab bar working with Three20!

Cheers!

mac1313
I had to first add the TTThumbsViewController to a navigation controller and the display that navigation controller modally... See my additional answer following this comment.
E-Madd
+1  A: 

My PhotoBrowserViewController is a subclass of TTThumbsViewController

PhotoBrowserViewController *photoView = [[PhotoBrowserViewController alloc] init];
photoView.delegate = self;
photoView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;

UINavigationController *photoNav = [[UINavigationController alloc] init];
[photoNav pushViewController:photoView animated:NO];
[photoView release];

[self presentModalViewController:photoNav animated:YES];

[photoNav release];

I did this code when I was beginning iPhone development and it's probably crap. Since then I've avoided tab controllers because of all the problems I encountered with them.

E-Madd