HTF?
i'm new to the iphone SDK. for a navigationbar and uitable (from the NIB) eg. an empty/new navigation-based app, what is the best way to change the height of the uinavigationbar without it clipping/overlapping the uitableview? i essentially just need to move the uitableview down and i've tried just about everything now.
Q1) is it best to use eg. navigationBar.frame = CGRectMake(0, 20, 320, 88);
or should i be using navigationBar.bounds
instead?
Q2) do you set tableView.bounds
or .frame
with CGRectMake
? or is there something blatently obvious that i overlooked?
i've tried different autoresizingMask
combos too
come on peoples! this should be easy. what am i doing wrong here?