
Untitled
By: a guest on
Apr 25th, 2012 | syntax:
None | size: 0.54 KB | hits: 11 | expires: Never
UINavigationBar background from an image
for(UIView *view in self.navigationController.navigationBar.subviews)
{
if([view isKindOfClass:[UIImageView class]])
{
[view removeFromSuperview];
}
}
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navBarBG.png"]];
[self.navigationController.navigationBar addSubview:imageView];
[self.navigationController.navigationBar sendSubviewToBack:imageView];
[imageView release];
[self.navigationController.navigationBar setTintColor:[UIColor clearColor]];