天天看点

给UINavigationBar 和 UIToolbar的背景绘图的讨论

APP开发技术QQ群:347072638      

iOS5.0以后 直接调用新的API

- (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0) UI_APPEARANCE_SELECTOR;

- (UIImage *)backgroundImageForBarMetrics:(UIBarMetrics)barMetrics __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0) UI_APPEARANCE_SELECTOR;

iOS5.0以前

@implementation UINavigationBar (CustomImage)

-(void) drawRect:(CGRect)rect {

    NSString *pngName;

    if (getDeviceType() == 3) {

        pngName = @"img/new_basic.png";

    }else{

        pngName = @"sw-header-top.png";

    }

    UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%@/%@", g_SkinPathStr,pngName]];

    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

}

@end

@implementation UIToolbar (CustomImage)

-(void) drawRect:(CGRect)rect {

    NSString *pngName;

    if (getDeviceType() == 3) {

        pngName = @"img/new_basic.png";

    }else{

        pngName = @"sw-header-bot.png";

    }

    self.translucent = YES;

    UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%@/%@", g_SkinPathStr,pngName]];

    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

}

@end

这里是重写了UINavigationBar和UIToolbar 的drawRect方法,实际上drawRect方法之后需要手动setNeedsDisplay才开始重绘窗口,

一般情况下,setFrame系统也会调用setNeedsDisplay。

setNeedsDisplay

Marks the receiver’s entire bounds rectangle as needing to be redrawn.

- (void)setNeedsDisplay

Discussion

You can use this method or the setNeedsDisplayInRect: to notify the system that your view’s contents need to be redrawn. This method makes a note of the request and returns immediately. The view is not actually redrawn until the next drawing cycle, at which point all invalidated views are updated.

Note: If your view is backed by a CAEAGLLayer object, this method has no effect. It is intended for use only with views that use native drawing technologies (such as UIKit and Core Graphics) to render their content.

You should use this method to request that a view be redrawn only when the content or appearance of the view change. If you simply change the geometry of the view, the view is typically not redrawn. Instead, its existing content is adjusted based on the value in the view’s contentMode property. Redisplaying the existing content improves performance by avoiding the need to redraw content that has not changed.

Availability

        Available in iOS 2.0 and later.