UITabBarController和UINavigationBar更换tabBar背景图片

来源:互联网 发布:最好的编程工具 编辑:程序博客网 时间:2024/05/17 03:30

1.UITabBarController更换tabBar背景图片
UITabBarController tabBarController = [[UITabBarController alloc] init];

NSArray *array = [tabBarController.view subviews];

UITabBar *tabBar = [array objectAtIndex:1];

UIImage *image = [UIImage imageWithContentsOfFile:sourcePath ];

tabBar.layer.contents = (id)image.CGImage;

 

 

2. UINavigationBar 更换tabBar背景图片

@interface UINavigationBar (MyCustomNavBar)

 

@end

 

@implementation UINavigationBar (MyCustomNavBar)

- (void) drawRect:(CGRect)rect {

UIImage *barImage = [UIImage imageNamed:@"title_part.png"];

[barImage drawInRect:rect];

}

@end

原创粉丝点击