UISearchBar背景透明,去掉背景,自定义背景

举报
清雨小竹 发表于 2022/09/25 03:14:33 2022/09/25
【摘要】 seachBar=[[UISearchBar alloc] init];//修改搜索框背景seachBar.backgroundColor=[UIColor clearColor];//去掉搜索框背景//1.[[searchbar.subviews objectAtIndex:0]removeFromSuperview];//2.for...

  
  1. seachBar=[[UISearchBar alloc] init];
  2. //修改搜索框背景
  3. seachBar.backgroundColor=[UIColor clearColor];
  4. //去掉搜索框背景
  5. //1.
  6. [[searchbar.subviews objectAtIndex:0]removeFromSuperview];
  7. //2.
  8. for (UIView *subview in seachBar.subviews)
  9. {
  10. if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
  11. {
  12. [subview removeFromSuperview];
  13. break;
  14. }
  15. }
  16. //3自定义背景
  17. UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"40-di.png"]];
  18. [mySearchBar insertSubview:imageView atIndex:1];
  19. [imageView release];
  20. //4输入搜索文字时隐藏搜索按钮,清空时显示
  21. - (BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar {
  22. searchBar.showsScopeBar = YES;
  23. [searchBar sizeToFit];
  24. [searchBar setShowsCancelButton:YES animated:YES];
  25. return YES;
  26. }
  27. - (BOOL)searchBarShouldEndEditing:(UISearchBar *)searchBar {
  28. searchBar.showsScopeBar = NO;
  29. [searchBar sizeToFit];
  30. [searchBar setShowsCancelButton:NO animated:YES];
  31. return YES;
  32. }
  33. //改变搜索按钮文字
  34. //改变UISearchBar取消按钮字体
  35. for(id cc in [searchBar subviews])
  36. {
  37. if([cc isKindOfClass:[UIButton class]])
  38. {
  39. UIButton *btn = (UIButton *)cc;
  40. [btn setTitle:@"搜索" forState:UIControlStateNormal];
  41. }
  42. }

文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。

原文链接:zzzili.blog.csdn.net/article/details/8745169

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。