天天看點

給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.