0

我有一个子类 UINavigationBar ,我在其中覆盖 drawRect 以提供具有透明度的 png 作为背景。一切都按预期工作,除了栏顶部的 1 像素空间(我可以看到底层地图在空间中移动)。

截屏

我唯一能找到的是这个问题,这听起来像我的问题,但我不知道该怎么解释:UINavigationBar 上方 1 个像素的空白空间

我已验证 PNG 文件在图像顶部没有 1 个像素的透明度。
在子类 UINavigationBar 中覆盖:

- (void)drawRect:(CGRect)rect { 

[_bg drawInRect:CGRectMake(0, 0, _bg.size.width, _bg.size.height)];
// showing correct bounds - drawRect: 0.000000, 0.000000, 320.000000, 85.000000
NSLog(@"drawRect: %f, %f, %f, %f",  rect.origin.x, 
                                    rect.origin.y, 
                                    rect.size.width, 
                                    rect.size.height);

}

- (CGSize)sizeThatFits:(CGSize)size {
CGRect frame = [[UIScreen mainScreen] applicationFrame];
CGSize sz = CGSizeMake(frame.size.width, _bg.size.height);
NSLog(@"sizefits");
return sz;

}

谢谢你的帮助!

4

1 回答 1

0

尽管我使用 UIAppearance 代理来设置自定义背景图像而不是覆盖 drawRect:,但我的自定义导航栏也遇到了同样的问题。这是我在根视图控制器上的 viewWillAppear: 中的快速修复:

// Make sure nav bar is flush with status bar (iOS 5 iPhone portrait somehow gives status bar height 20 and nav bar y 20.5, so we miss a pixel).
CGRect navBarFrame = self.navigationController.navigationBar.frame;
navBarFrame.origin.y = [UIApplication sharedApplication].statusBarFrame.size.height;
self.navigationController.navigationBar.frame = navBarFrame;
于 2012-04-24T14:17:05.980 回答