开发者

UINavigationBar height and landscape mode

If I use a UINavigationController to display my UINavigationBar, this bar is much slimmer in landscape mode than in portrait mode.

Everything 开发者_C百科fine so far, as I want this behavior, but I have one view which isn't handled by an UINavigationController and so I just dragged and dropped a UINavigationBar from Interface Builder into the view but this one has always the same size and I can't see a way to tell the UINavigationBar that it should resize.

Anyone knows how to achieve this?


You can resize the the navigation bar in the layoutSubviews method of your UIView, like so:

- (void)layoutSubviews {
    [super layoutSubviews];

    // Let navBar tell us what height it would prefer at the current orientation
    CGFloat navBarHeight = [navBar sizeThatFits:self.bounds.size].height;

    // Resize navBar
    navBar.frame = CGRectMake(0, 0, self.bounds.size.width, navBarHeight);
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜