UINavagationBar,UISearchBar,UITo…

本文介绍如何在Objective-C中通过类别(Category)技术自定义iOS应用中的UINavigationBar、UIToolBar、UITabBar及UISearchBar的背景图片,包括代码实现和关键步骤解析。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

UINavagationBar,UISearchBar,UIToolBar,UITabBar 自定义 Background Image

这里运用了 object-c里面的一个类别,大体意思就是在不知道苹果封装起来的API内容的情况下,在外部程序中覆盖其原来的函数。大体这个意思吧。程序代码: 在程序的任何一个 .m文件 后面加上下面代码即可 记住 要在 @end 的后面加上。

UINavigationBar:
@implementation UINavigationBar (CustomImage2)   
- (void)drawRect:(CGRect)rect 
  
      UIImage *image = [UIImage imageNamed: @"bar.png"];   
     [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];   
  
@end
UIToolBar:
@implementation UIToolbar (CustomImage2)   
- (void)drawRect:(CGRect)rect 
  
UIImage *image = [UIImage imageNamed: @"bar.png"];   
     [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];   
  
@end
UITabBar:
@implementation UITabBar (CustomImage2)   
- (void)drawRect:(CGRect)rect 
      
UIImage *image = [UIImage imageNamed: @"bar.png"];   
     [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];   
  
@end
上面这三个的用法都是一样的,关键是SearchBarSearchBar的背景图片控制不是由SearchBar 本身 而是由 UISearchBarBack 来控制的,因此无法直接用上面的代码,需要手动把SearchBar上面的两个View 删除了才行。
在你的ViewDidLoad 或者任何一个程序可以执行到的地方 写下如下代码,当然,你的searchBar得创建之后才行
且看删除代码
[[_searchBar.subviews objectAtIndex:0] setHidden:YES];
     [[_searchBar.subviews objectAtIndex:0] removeFromSuperview];
     for (UIView *subview in _searchBar.subviews) 
    {
         if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) 
         {
              [subview removeFromSuperview];
             break;
         }
     }
这个代码 配合 上面的那个类别
    @implementation UISearchBar (CustomImage2)   
- (void)drawRect:(CGRect)rect 
      
     UIImage *image = [UIImage imageNamed: @"bar.png"];   
     [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];   
  
@end
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值