OGeek|极客世界-中国程序员成长平台

标题: iphone - 将 UINavigationBar 背景图像更改为默认值 - iOS 4.3 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-11 22:41
标题: iphone - 将 UINavigationBar 背景图像更改为默认值 - iOS 4.3

我用重载方法改变UINavigationBar背景图片

@implementation UINavigationBar (Background)
-(void) drawRectCGRect)rect
{
    UIImage *image = [UIImage imageNamed"Header.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}

@end

但在某些 UIViewControllers 中,我需要删除此背景图像。我该怎么做?



Best Answer-推荐答案


你可以看看 this blog post from Sebastian Celis .它完全解决了您面临的问题。

也许还要检查 this .

关于iphone - 将 UINavigationBar 背景图像更改为默认值 - iOS 4.3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10163047/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4