2011-11-08 280 views
0

我製作幻燈片放映。我希望導航欄看起來與照片應用程序中的相同。我如何獲得這種透明度?使UINavigationBar半透明

我曾嘗試:

- (void)drawRect:(CGRect)rect { 
    [[UIColor clearColor] set]; 
    CGContextFillRect(UIGraphicsGetCurrentContext(), rect); 

} 

UIImage *bg = [UIImage imageNamed:@"navbar.png"]; 
UIImageView *background = [[UIImageView alloc] initWithImage:bg]; 
background.frame = self.navigationController.toolbar.bounds; 
background.autoresizingMask = UIViewAutoresizingFlexibleWidth; 
BOOL isIOS5 = [[[UIDevice currentDevice] systemVersion] intValue] >= 5; 
self.navigationController.toolbar.backgroundColor = [UIColor clearColor]; 
[self.navigationController.toolbar insertSubview:background atIndex: (isIOS5 ? 1 : 0)]; 

回答

2

我相信你正在尋找UINavigationBartranslucent財產。試試:

[[self.navigationController navigationBar] setTranslucent:YES];