IOS中设置UISearchBar背景颜色的详细教程

来源:爱站网时间:2018-10-08编辑:网友分享
今天小编跟大家分享一篇关于IOS中设置UISearchBar背景颜色的详细教程,感兴趣的朋友跟小编一起来了解一下吧!

  今天小编跟大家分享一篇关于IOS中设置UISearchBar背景颜色的详细教程,感兴趣的朋友跟小编一起来了解一下吧!

  修改背景色方法如下:

  mySearchBar.backgroundColor = RGBACOLOR(249,249,249,1);

  mySearchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:mySearchBar.bounds.size];

  //取消searchbar背景色

  - (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size

  {

  CGRect rect = CGRectMake(0, 0, size.width, size.height);

  UIGraphicsBeginImageContext(rect.size);

  CGContextRef context = UIGraphicsGetCurrentContext();

  CGContextSetFillColorWithColor(context, [color CGColor]);

  CGContextFillRect(context, rect);

  UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();

  return image;

  }

  以上就是关于IOS中设置UISearchBar背景颜色的详细教程了,想必都了解了吧,更多相关内容请继续关注爱站技术频道。

上一篇:iOS中UIWindow的用法详细解析

下一篇:关于UITabBarController的使用解剖

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载