Three20 library - subclass of TTPhotoViewController has an opaque navigation bar?

EDIT: I'm an idiot. You're trying to set the style not the color. The below is all valid information, but what you almost certainly want is the navigationBarStyle property defined by TTViewController Sorry.

EDIT: I'm an idiot. You're trying to set the style, not the color. The below is all valid information, but what you almost certainly want is the navigationBarStyle property defined by TTViewController.Sorry.

Three20 has a "style sheet" mechanism built into it, the intended purpose of which is to save you from having to set tint colors, fonts, etc. On all of the many UI objects in your app, over and over. However, if you don't know it's there, you end up in exactly this situation. What you need to do is: Create a subclass of TTDefaultStyleSheet in your application, and override at least this method: - (UIColor*)navigationBarTintColor { return RGBCOLOR(119, 140, 168); } Someplace in your app (probably applicationDidFinishLaunching:), call: TTStyleSheet setGlobalStyleSheet: YourStyleSheetClass alloc init autorelease; (You might want to browse around in TTDefaultStyleSheet.

H, because there are a whole pile of other styles defined there that are used by the framework, and that you might also want to override. ).

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